Advertisement
5555HACKER

Roblox tp, noclip, skywalk and alt to delete script

Apr 22nd, 2020 (edited)
4,017
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. -- Made by 5555HACKER
  2.  
  3. local player = game.Players.LocalPlayer
  4. local mouse = player:GetMouse()
  5. local runservice = game:GetService("RunService")
  6. local noclip = false
  7.  
  8. local msg = Instance.new("Message", player.PlayerGui)
  9. msg.Text = "Noclip and AltDelete and q to tp Script by 5555HACKER! Press 'q' to tp! Press Alt and click to delete! Press on 'e' to noclip! and 't' to destroy this message!"
  10.  
  11. runservice.Stepped:Connect(function()
  12. if noclip then
  13. player.Character.Humanoid:ChangeState(11)
  14. end
  15. end)
  16.  
  17. mouse.KeyDown:Connect(function(key)
  18. if key == "t" then
  19. msg:Destroy()
  20. end
  21. end)
  22.  
  23. mouse.KeyDown:Connect(function(key)
  24. if key == "e" then
  25. noclip = true
  26. player.Character.Humanoid:ChangeState(11)
  27. end
  28. end)
  29.  
  30. mouse.KeyDown:Connect(function(key)
  31. if key == "u" then
  32. noclip = false
  33. player.Character.Humanoid:ChangeState(11)
  34. end
  35. end)
  36.  
  37. -- This is were the alt click delete script begins.
  38.  
  39. local Plr = game:GetService("Players").LocalPlayer
  40. local Mouse = Plr:GetMouse()
  41.  
  42. Mouse.Button1Down:connect(function()
  43. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftAlt) then return end
  44. if not Mouse.Target then return end
  45. Mouse.Target:Destroy()
  46. end)
  47.  
  48. -- Here begins the 'q' to tp script
  49.  
  50. plr = game.Players.LocalPlayer
  51.  
  52. hum = plr.Character.HumanoidRootPart
  53.  
  54. mouse = plr:GetMouse()
  55.  
  56.  
  57.  
  58. mouse.KeyDown:connect(function(key)
  59.  
  60. if key == "q" then
  61.  
  62. if mouse.Target then
  63.  
  64. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  65.  
  66. end
  67.  
  68. end
  69. end)
  70.  
  71. --Here is an sit script(For games with anti cheat)
  72.  
  73. local m = game.Players.LocalPlayer:GetMouse()
  74. m.KeyDown:connect(function(k)
  75. if k:lower() == "z" then
  76. local c = game.Players.LocalPlayer.Character
  77. if c then
  78. local h = c:findFirstChild("Humanoid")
  79. if h then h.Sit = not h.Sit --Here goes the function, mine is to make the character sit
  80. end
  81. end
  82. end
  83. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement