Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --==Settings==--
- local tpcoins = true
- local autosell = true
- local autofarm = true
- --==Script==--
- game:GetService('RunService').Stepped:Connect(function()
- --==AutoSell==--
- if autosell == true then
- for _,v in pairs(game.Workspace.Sell:GetChildren()) do
- v.Sell.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- if v.Sell:FindFirstChild("BillboardGui") ~= nil then
- v.Sell:FindFirstChild("BillboardGui"):Destroy()
- end
- end
- end
- --==CoinTp==--
- if tpcoins == true then
- for _,v in pairs(game.Workspace.Coins:GetChildren()) do
- v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- end
- end
- --==AutoFarm==--
- if autofarm == true then
- if game.Players.LocalPlayer.Backpack:FindFirstChildOfClass("Tool") ~= nil then
- game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack:FindFirstChildOfClass("Tool"))
- end
- local A_1 =game.Players.LocalPlayer.otherstats.EquippedBackpackRef.Value +1
- local Event = game:GetService("ReplicatedStorage").Events.BuyEquipBackpack
- Event:FireServer(A_1)
- local A_1 = game.Players.LocalPlayer.otherstats.EquippedFoodRef.Value +1
- local Event = game:GetService("ReplicatedStorage").Events.BuyEquipFood
- Event:FireServer(A_1)
- local Event = game:GetService("ReplicatedStorage").Events.Rebirth
- Event:FireServer()
- local Event = game:GetService("Workspace").FunkySquad413Son.Food.E
- Event:FireServer()
- end
- end)
Add Comment
Please, Sign In to add comment