ScriptingGuy

K.O Simulator Script

Mar 8th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. The Game Link : https://www.roblox.com/games/3775649046/CODE-K-O-Simulator
  2. Discord Link : https://discordapp.com/channels/686554761901768721/686664520596324435
  3.  
  4. --AutoPunch (×25/50 Speed)
  5. _G.LULU = true--change to true or false
  6. while _G.LULU do
  7. wait()--change time if you want
  8. for i=1, 100 do
  9. game:GetService("ReplicatedStorage").Events.PunchCombo:FireServer(A_1)
  10. end
  11. end
  12.  
  13.  
  14. -- AutoSell
  15. _G.AutoSell = true;
  16.  
  17. while _G.AutoSell do
  18. local sell = game.workspace.Lobby.Sell
  19. wait(0.1)
  20. sell.CanCollide = false
  21. sell.Transparency = 1
  22. sell.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,math.random(-1,1),0)
  23. end
Add Comment
Please, Sign In to add comment