0% found this document useful (0 votes)
861 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)
861 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

-- your a skid bro

wait(3)

warn("loading epic haxor")

[Link]:SetCore("SendNotification", {
Title = "WalkSpeedGui";
Text = "Loaded!";
Icon = "";
Duration = "2";
})
wait(2)

loadstring(game:HttpGet(('[Link]

-- variabl

local WalkSpeed_GUI = [Link]("ScreenGui")


local Open = [Link]("TextButton")
local Main = [Link]("Frame")
local ResetSpeed = [Link]("TextButton")
local SetSpeed = [Link]("TextButton")
local SpeedValue = [Link]("TextBox")
local Title = [Link]("TextLabel")
local Close = [Link]("TextButton")
local TextLabel = [Link]("TextLabel")
[Link] = false

-- cool stuf

WalkSpeed_GUI.Name = "WalkSpeed_GUI"
WalkSpeed_GUI.Parent = [Link]:WaitForChild("PlayerGui")
WalkSpeed_GUI.ZIndexBehavior = [Link]

[Link] = "Open"
[Link] = WalkSpeed_GUI
Open.BackgroundColor3 = [Link](0.211765, 0.211765, 0.211765)
Open.BorderColor3 = [Link](0.164706, 0.164706, 0.164706)
[Link] = 2
[Link] = [Link](0.852232754, 0, 0.912472665, 0)
[Link] = [Link](0, 100, 0, 25)
[Link] = [Link]
[Link] = "Open"
Open.TextColor3 = [Link](0.443137, 0.443137, 0.443137)
[Link] = 14

[Link] = "Main"
[Link] = WalkSpeed_GUI
[Link] = true
Main.BackgroundColor3 = [Link](0.211765, 0.211765, 0.211765)
Main.BorderColor3 = [Link](0.164706, 0.164706, 0.164706)
[Link] = 2
[Link] = [Link](0.100792751, 0, 0.13636364, 0)
[Link] = [Link](0, 400, 0, 270)

[Link] = "ResetSpeed"
[Link] = Main
ResetSpeed.BackgroundColor3 = [Link](0.211765, 0.211765, 0.211765)
ResetSpeed.BorderColor3 = [Link](0.164706, 0.164706, 0.164706)
[Link] = 2
[Link] = [Link](0.25, 0, 0.647930086, 0)
[Link] = [Link](0, 200, 0, 50)
[Link] = [Link]
[Link] = "Default Speed"
ResetSpeed.TextColor3 = [Link](0.443137, 0.443137, 0.443137)
[Link] = 14

[Link] = "SetSpeed"
[Link] = Main
SetSpeed.BackgroundColor3 = [Link](0.211765, 0.211765, 0.211765)
SetSpeed.BorderColor3 = [Link](0.164706, 0.164706, 0.164706)
[Link] = 2
[Link] = [Link](0.25, 0, 0.297961205, 0)
[Link] = [Link](0, 95, 0, 50)
[Link] = [Link]
[Link] = "Set Speed"
SetSpeed.TextColor3 = [Link](0.443137, 0.443137, 0.443137)
[Link] = 14

[Link] = "SpeedValue"
[Link] = Main
SpeedValue.BackgroundColor3 = [Link](0.211765, 0.211765, 0.211765)
SpeedValue.BorderColor3 = [Link](0.164706, 0.164706, 0.164706)
[Link] = 2
[Link] = [Link](0.537500024, 0, 0.297961205, 0)
[Link] = [Link](0, 85, 0, 50)
[Link] = [Link]
SpeedValue.PlaceholderColor3 = [Link](0.698039, 0.698039, 0.698039)
[Link] = "16"
SpeedValue.TextColor3 = [Link](0.443137, 0.443137, 0.443137)
[Link] = 14

[Link] = "Title"
[Link] = Main
Title.BackgroundColor3 = [Link](0.211765, 0.211765, 0.211765)
Title.BorderColor3 = [Link](0.164706, 0.164706, 0.164706)
[Link] = 2
[Link] = [Link](0, 400, 0, 50)
[Link] = [Link]
[Link] = "WalkSpeed"
Title.TextColor3 = [Link](0.443137, 0.443137, 0.443137)
[Link] = 14

[Link] = "Close"
[Link] = Main
Close.BackgroundColor3 = [Link](0.211765, 0.211765, 0.211765)
Close.BorderColor3 = [Link](0.164706, 0.164706, 0.164706)
[Link] = 2
[Link] = [Link](0.875, 0, 2.04890966e-08, 0)
[Link] = [Link](0, 50, 0, 50)
[Link] = [Link]
[Link] = "X"
Close.TextColor3 = [Link](0.443137, 0.443137, 0.443137)
[Link] = 14

[Link] = WalkSpeed_GUI
TextLabel.BackgroundColor3 = [Link](255, 255, 255)
[Link] = 1
[Link] = 0
[Link] = [Link](0, 0)
[Link] = [Link](0, 191, 0, 19)
[Link] = [Link]
[Link] = "ronut#1571"
TextLabel.TextColor3 = [Link](0.443137, 0.443137, 0.443137)
[Link] = true
[Link] = 14
[Link] = true

-- scroptz

Open.MouseButton1Down:connect(function()
[Link] = true
[Link] = false
end)

Close.MouseButton1Down:connect(function()
[Link] = false
[Link] = true
end)

SetSpeed.MouseButton1Down:connect(function()
[Link] = [Link]
[Link]:SetCore("SendNotification", {
Title = "WalkSpeedGui";
Text = "Speed has been set to".. [Link];
Icon = "";
Duration = "2";
})
end)

ResetSpeed.MouseButton1Down:connect(function()
[Link] = 16
[Link]:SetCore("SendNotification", {
Title = "WalkSpeedGui";
Text = "Your speed has been reset.";
Icon = "";
Duration = "2";
})

end)

You might also like