Advertisement
Venus_Playz

Dev Console Scripts 2

Feb 27th, 2021
79
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 1
  1. Money Giving:
  2.  
  3. game.Players.NAME.leaderstats.CURRENCY.Value = 5400
  4. __________________________________________________
  5.  
  6. Kick:
  7.  
  8. game.Players.NAME:Kick("REASON")
  9. __________________________________________________
  10.  
  11. Speed:
  12.  
  13. game.Players.NAME.Character.Humanoid.WalkSpeed = 100
  14. __________________________________________________
  15.  
  16. Kill:
  17.  
  18. game.Players.NAME.Character.Humanoid.Health = 0
  19. __________________________________________________
  20. Create a message:
  21.  
  22. local m = Instance.new("Message")
  23. m.Parent = Workspace
  24. m.Text = "MESSAGE"
  25. wait(10)
  26. m:Remove()
  27. __________________________________________________
  28. while true do
  29. wait(0.5)
  30. game.Lighting.Ambient = Color3.new(math.random(), math.random(), math.random())
  31. game.Lighting.ColorShift_Top = Color3.new(math.random(), math.random(), math.random())
  32. game.Lighting.ColorShift_Bottom = Color3.new(math.random(), math.random(), math.random())
  33. game.Lighting.ShadowColor = Color3.new(math.random(), math.random(), math.random())
  34. end
  35.  
  36. ___________________________________________________
  37.  
  38. game.Workspace:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement