Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local me = game.Players.LocalPlayer
- local BillboardGui = Instance.new("BillboardGui")
- local TextLabel = Instance.new("TextLabel")
- BillboardGui.Parent = me.Character.Head
- BillboardGui.LightInfluence = 1
- BillboardGui.Size = UDim2.new(0, 200, 0, 50)
- BillboardGui.SizeOffset = Vector2.new(0, 1)
- TextLabel.Parent = BillboardGui
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.BackgroundTransparency = 1
- TextLabel.Size = UDim2.new(0, 200, 0, 50)
- TextLabel.Font = Enum.Font.Garamond
- TextLabel.Text = "cringe radio"
- TextLabel.TextColor3 = Color3.new(1, 0, 0)
- TextLabel.TextSize = 35
- TextLabel.TextStrokeColor3 = Color3.new(0.45098, 1, 0)
- Mouse = me:GetMouse()
- local Activated = true
- Mouse.KeyDown:Connect(function(key)
- key = key:lower()
- if key == "q" then
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = "50"
- wait(1)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = "40"
- wait(0.9)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = "30"
- wait(0.8)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = "20"
- wait(0.7)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = "16"
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement