Gives exactly 9999999999999999 gold.
it doesnt give u money but it gives u steel sword
@Duck did you even check your money?
@Duck Hold on, I made an error in the scipt. It should be fixed now.
just set Sell where written Buy
Btw, whith this script, you can buy the best sword in game for 1 gold: local args = { [1] = "Buy", [2] = -1, [3] = "Mystic Arcane" } game:GetService("Players").LocalPlayer.RemoteFunctions.SwordShopSystem:FireServer(unpack(args)) --I have another script that lets you upgrade your damage, but it's ineffective. If you want it, dm me on discord or just rspy.
Script works, but Mystic Arcane and "Steel" are not stronger weapons than a weapon with devil in the game after checking through their swords list that I could fine (Inside of the "Lighting" area) I tested it with this: _G.strongest = game.Lighting["Iron"] for i,v in pairs(game:GetService("Lighting"):GetChildren()) do if v:IsA("Tool") then if _G.strongest.Folder.MaxDmg.Value > v.Folder.MaxDmg.Value then print(_G.strongest.Name .. " is stronger than " .. v.Name) elseif _G.strongest.Folder.MaxDmg.Value < v.Folder.MaxDmg.Value then print(v.Name .. " is stronger than old weapon: " .. _G.strongest.Name) _G.strongest = v else print("Check is broken") end end end Junk code but whatever, gets the job done