Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Made By IEnes
- local SpeedChanger = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local SpeedValue = Instance.new("TextBox")
- local TextLabel = Instance.new("TextLabel")
- local Close = Instance.new("TextButton")
- --The gui goes away when you die, the reason is that after you die, the gui doesn't work, that's why it goes away, don't worry why it goes away.
- --Thanks for use my gui xd
- SpeedChanger.Name = "SpeedChanger"
- SpeedChanger.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- SpeedChanger.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- SpeedChanger.ResetOnSpawn = true
- Frame.Parent = SpeedChanger
- Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Frame.BorderSizePixel = 2
- Frame.Position = UDim2.new(0, 0, 0.364178896, 0)
- Frame.Size = UDim2.new(0, 164, 0, 92)
- Frame.Active = true
- Frame.Draggable = true
- SpeedValue.Name = "SpeedValue"
- SpeedValue.Parent = Frame
- SpeedValue.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- SpeedValue.BackgroundTransparency = 1.000
- SpeedValue.BorderColor3 = Color3.fromRGB(0, 0, 0)
- SpeedValue.BorderSizePixel = 0
- SpeedValue.Position = UDim2.new(0, 0, 0.557909429, 0)
- SpeedValue.Size = UDim2.new(0, 164, 0, 40)
- SpeedValue.Font = Enum.Font.SourceSans
- SpeedValue.Text = "16"
- SpeedValue.TextColor3 = Color3.fromRGB(0, 0, 0)
- SpeedValue.TextScaled = true
- SpeedValue.TextSize = 14.000
- SpeedValue.TextWrapped = true
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
- TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.BorderSizePixel = 2
- TextLabel.Size = UDim2.new(0, 164, 0, 36)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "Speed Changer"
- TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextWrapped = true
- Close.Name = "Close"
- Close.Parent = Frame
- Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Close.BackgroundTransparency = 1.000
- Close.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Close.BorderSizePixel = 0
- Close.Position = UDim2.new(-9.30413933e-08, 0, -0.391304344, 0)
- Close.Size = UDim2.new(0, 33, 0, 36)
- Close.Font = Enum.Font.SourceSans
- Close.Text = "X"
- Close.TextColor3 = Color3.fromRGB(255, 0, 0)
- Close.TextScaled = true
- Close.TextSize = 14.000
- Close.TextWrapped = true
- --Scripts
- local function FSHA_fake_script() -- SpeedValue.LocalScript
- local script = Instance.new('LocalScript', SpeedValue)
- wait(2)
- local plr = game.Players.LocalPlayer
- local char = plr.Character
- local hum = char:WaitForChild("Humanoid")
- local limit = inf
- script.Parent.Changed:Connect(function()
- hum.WalkSpeed = script.Parent.Text
- --Made By IEnesxvc
- if script.Parent.Text >= limit then
- script.Parent.Test = "inf"
- end
- end)
- end
- coroutine.wrap(FSHA_fake_script)()
- local function FZKN_fake_script()
- local script = Instance.new('LocalScript', Close)
- script.Parent.MouseButton1Down:Connect(function()
- script.Parent.Parent.Visible = false
- end)
- end
- coroutine.wrap(FZKN_fake_script)()
- --100
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement