Advertisement
ProScripter29

Client Sided Hack Script

Nov 12th, 2022
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. -- Script created by HappyH0lidays2021 --
  2.  
  3. local Player = game.Players.LocalPlayer
  4.  
  5. local Gui = Instance.new("ScreenGui", Player.PlayerGui)
  6.  
  7. local SpeedHacksEnabled = false
  8. local JumpHacksEnabled = false
  9. local HighlightEnabled = false
  10.  
  11. local function CreateButton(Position, Size, Color, Text)
  12. local NewButton = Instance.new("TextButton", Gui)
  13. NewButton.Name = "_TextButton"
  14. NewButton.Position = Position
  15. NewButton.Size = Size
  16. NewButton.BackgroundColor3 = Color
  17. NewButton.BorderColor3 = Color
  18. NewButton.BorderMode = Enum.BorderMode.Inset
  19. NewButton.AutoButtonColor = false
  20. NewButton.BorderSizePixel = 5
  21. -- Text --
  22. NewButton.Text = Text
  23. NewButton.Font = Enum.Font.GothamBlack
  24. NewButton.TextScaled = true
  25. return NewButton
  26. end
  27.  
  28. local function Function1()
  29. local Character = Player.Character
  30. local Humanoid = Character:WaitForChild("Humanoid")
  31. if Humanoid then
  32. if not SpeedHacksEnabled then
  33. SpeedHacksEnabled = true
  34. Humanoid.WalkSpeed = 80
  35. else
  36. SpeedHacksEnabled = false
  37. Humanoid.WalkSpeed = game.StarterPlayer.CharacterWalkSpeed
  38. end
  39. end
  40. end
  41.  
  42. local function Function2()
  43. local Character = Player.Character
  44. local Humanoid = Character:WaitForChild("Humanoid")
  45. if Humanoid then
  46. if not JumpHacksEnabled then
  47. JumpHacksEnabled = true
  48. Humanoid.UseJumpPower = true
  49. Humanoid.JumpPower = 150
  50. else
  51. JumpHacksEnabled = false
  52. Humanoid.UseJumpPower = true
  53. Humanoid.JumpPower = game.StarterPlayer.CharacterJumpPower
  54. end
  55. end
  56. end
  57.  
  58. local function Function3()
  59. if not HighlightEnabled then
  60. HighlightEnabled = true
  61. for _, Player in pairs(game.Players:GetPlayers()) do
  62. local Character = Player.Character
  63. if Character then
  64. local Highlight = Instance.new("Highlight", Character)
  65. Highlight.Name = "_Highlight"
  66. Highlight.FillColor = Color3.fromRGB(255,0,0)
  67. Highlight.OutlineColor = Color3.fromRGB(255,0,0)
  68. Highlight.FillTransparency = 0.5
  69. Highlight.OutlineTransparency = 0.75
  70. end
  71. end
  72. else
  73. HighlightEnabled = false
  74. for _, Player in pairs(game.Players:GetPlayers()) do
  75. local Character = Player.Character
  76. if Character then
  77. if Character:FindFirstChild("_Highlight") then
  78. Character._Highlight:Destroy()
  79. end
  80. end
  81. end
  82. end
  83. end
  84.  
  85. local Speed = CreateButton(UDim2.new(0.814, 0, 0.426, 0), UDim2.new(0.165, 0, 0.067, 0), Color3.fromRGB(255,255,255), "Speed")
  86. local Jump = CreateButton(UDim2.new(0.814, 0, 0.506, 0), UDim2.new(0.165, 0, 0.067, 0), Color3.fromRGB(255,255,255), "Jump")
  87. local Highlighter = CreateButton(UDim2.new(0.814, 0, 0.587, 0), UDim2.new(0.165, 0, 0.064, 0), Color3.fromRGB(255,255,255), "Highlight Players")
  88.  
  89. Speed.MouseButton1Click:Connect(Function1)
  90. Jump.MouseButton1Click:Connect(Function2)
  91. Highlighter.MouseButton1Click:Connect(Function3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement