KenshiOfficial

Touch football money script

Dec 21st, 2022
6,989
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | Gaming | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "Zacks Cool Hub | Touch Football/Soccer", HidePremium = true, IntroText = "greatest thing is auto farm lol", SaveConfig = false, ConfigFolder = "ZCH"})
  3. local Main = Window:MakeTab({
  4. Name = "Main",
  5. Icon = "rbxassetid://4483345998",
  6. PremiumOnly = false
  7. })
  8. local MainSection = Main:AddSection({
  9. Name = "Main"
  10. })
  11.  
  12. Main:AddToggle({
  13. Name = "Auto Collect Coins",
  14. Default = false,
  15. Callback = function(col)
  16. if col then
  17. _G.collect = true
  18. while _G.collect == true do
  19. wait()
  20. for _,v in pairs(game:GetService("Workspace").Coins:GetDescendants()) do
  21. if v:IsA("TouchTransmitter") then
  22. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0) --0 is touch
  23. wait()
  24. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1) -- 1 is untouch
  25. end
  26. end
  27. end
  28. else
  29. _G.collect = false
  30. end
  31. end})
  32.  
  33. Main:AddSlider({
  34. Name = "Change WS (works)",
  35. Min = 16,
  36. Max = 150,
  37. Default = 16,
  38. Increment = 1,
  39. ValueName = "--WS--",
  40. Callback = function(ws)
  41. while wait() do
  42. local lp = game.Players.LocalPlayer.Name
  43. local args = {
  44. [1] = lp,
  45. [2] = ws
  46. }
  47.  
  48. game:GetService("ReplicatedStorage").UpdateWalkSpeed:FireServer(unpack(args))
  49. end
  50. end})
Tags: money
Comments
Add Comment
Please, Sign In to add comment