Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Created By: Turtle#4641
- local SpeedHub = Instance.new("ScreenGui")
- local walkspeed = Instance.new("Frame")
- local title = Instance.new("TextLabel")
- local close = Instance.new("TextButton")
- local enterwalkspeed = Instance.new("TextBox")
- local activate = Instance.new("TextButton")
- --Properties:
- SpeedHub.Parent = game.CoreGui
- game.StarterGui:SetCore("SendNotification", {
- Title = "Syandiar Walk Speed";
- Text = "Succesfully Executed!";
- Duration = 1.0;
- })
- walkspeed.Name = "walkspeed"
- walkspeed.Parent = SpeedHub
- walkspeed.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- walkspeed.Position = UDim2.new(0.139573067, 0, 0.478705257, 0)
- walkspeed.Size = UDim2.new(0, 234, 0, 136)
- walkspeed.Visible = true
- walkspeed.Active = true
- walkspeed.Draggable = true
- title.Name = "title"
- title.Parent = walkspeed
- title.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- title.BorderColor3 = Color3.fromRGB(27, 42, 53)
- title.Size = UDim2.new(0, 175, 0, 50)
- title.Font = Enum.Font.SciFi
- title.Text = "Walkspeed Hub"
- title.TextColor3 = Color3.fromRGB(255, 255, 255)
- title.TextScaled = true
- title.TextSize = 14.000
- title.TextWrapped = true
- close.Name = "close"
- close.Parent = walkspeed
- close.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
- close.Position = UDim2.new(0.747863233, 0, 0, 0)
- close.Size = UDim2.new(0, 59, 0, 50)
- close.Font = Enum.Font.SourceSans
- close.Text = "X"
- close.TextColor3 = Color3.fromRGB(0, 0, 0)
- close.TextScaled = true
- close.TextSize = 14.000
- close.TextWrapped = true
- close.MouseButton1Down:connect(function()
- walkspeed.Visible = false
- end)
- enterwalkspeed.Name = "enterwalkspeed"
- enterwalkspeed.Parent = walkspeed
- enterwalkspeed.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- enterwalkspeed.Position = UDim2.new(0, 0, 0.367647052, 0)
- enterwalkspeed.Size = UDim2.new(0, 234, 0, 50)
- enterwalkspeed.Font = Enum.Font.SourceSans
- enterwalkspeed.PlaceholderColor3 = Color3.fromRGB(255, 255, 255)
- enterwalkspeed.PlaceholderText = "Enter the Walkspeed here"
- enterwalkspeed.Text = ""
- enterwalkspeed.TextColor3 = Color3.fromRGB(255, 255, 255)
- enterwalkspeed.TextSize = 14.000
- activate.Name = "activate"
- activate.Parent = walkspeed
- activate.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- activate.Position = UDim2.new(0, 0, 0.735294104, 0)
- activate.Size = UDim2.new(0, 234, 0, 36)
- activate.Font = Enum.Font.SourceSans
- activate.Text = "Activate"
- activate.TextColor3 = Color3.fromRGB(255, 255, 255)
- activate.TextScaled = true
- activate.TextSize = 14.000
- activate.TextWrapped = true
- activate.MouseButton1Down:Connect(function()
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = enterwalkspeed.Text
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement