Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Script created by HappyH0lidays2021 --
- local Player = game.Players.LocalPlayer
- local Gui = Instance.new("ScreenGui", Player.PlayerGui)
- local SpeedHacksEnabled = false
- local JumpHacksEnabled = false
- local HighlightEnabled = false
- local function CreateButton(Position, Size, Color, Text)
- local NewButton = Instance.new("TextButton", Gui)
- NewButton.Name = "_TextButton"
- NewButton.Position = Position
- NewButton.Size = Size
- NewButton.BackgroundColor3 = Color
- NewButton.BorderColor3 = Color
- NewButton.BorderMode = Enum.BorderMode.Inset
- NewButton.AutoButtonColor = false
- NewButton.BorderSizePixel = 5
- -- Text --
- NewButton.Text = Text
- NewButton.Font = Enum.Font.GothamBlack
- NewButton.TextScaled = true
- return NewButton
- end
- local function Function1()
- local Character = Player.Character
- local Humanoid = Character:WaitForChild("Humanoid")
- if Humanoid then
- if not SpeedHacksEnabled then
- SpeedHacksEnabled = true
- Humanoid.WalkSpeed = 80
- else
- SpeedHacksEnabled = false
- Humanoid.WalkSpeed = game.StarterPlayer.CharacterWalkSpeed
- end
- end
- end
- local function Function2()
- local Character = Player.Character
- local Humanoid = Character:WaitForChild("Humanoid")
- if Humanoid then
- if not JumpHacksEnabled then
- JumpHacksEnabled = true
- Humanoid.UseJumpPower = true
- Humanoid.JumpPower = 150
- else
- JumpHacksEnabled = false
- Humanoid.UseJumpPower = true
- Humanoid.JumpPower = game.StarterPlayer.CharacterJumpPower
- end
- end
- end
- local function Function3()
- if not HighlightEnabled then
- HighlightEnabled = true
- for _, Player in pairs(game.Players:GetPlayers()) do
- local Character = Player.Character
- if Character then
- local Highlight = Instance.new("Highlight", Character)
- Highlight.Name = "_Highlight"
- Highlight.FillColor = Color3.fromRGB(255,0,0)
- Highlight.OutlineColor = Color3.fromRGB(255,0,0)
- Highlight.FillTransparency = 0.5
- Highlight.OutlineTransparency = 0.75
- end
- end
- else
- HighlightEnabled = false
- for _, Player in pairs(game.Players:GetPlayers()) do
- local Character = Player.Character
- if Character then
- if Character:FindFirstChild("_Highlight") then
- Character._Highlight:Destroy()
- end
- end
- end
- end
- end
- 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")
- 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")
- 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")
- Speed.MouseButton1Click:Connect(Function1)
- Jump.MouseButton1Click:Connect(Function2)
- Highlighter.MouseButton1Click:Connect(Function3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement