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

Roblox Walkspeed Control GUI Script

This document defines the code for a Roblox GUI that allows controlling player walk speed. It creates instances like ScreenGui, Frame, buttons, and labels. It defines properties like positioning, colors, and sizes. Scripts are added to connect functionality - clicking buttons will increase/decrease walk speed by 5, displayed in an updated label. Clicking Close/Open will show/hide the GUI frame.

Uploaded by

ajkyle lopez
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)
914 views3 pages

Roblox Walkspeed Control GUI Script

This document defines the code for a Roblox GUI that allows controlling player walk speed. It creates instances like ScreenGui, Frame, buttons, and labels. It defines properties like positioning, colors, and sizes. Scripts are added to connect functionality - clicking buttons will increase/decrease walk speed by 5, displayed in an updated label. Clicking Close/Open will show/hide the GUI frame.

Uploaded by

ajkyle lopez
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
  • Property Definitions
  • Screen GUI Initialization
  • TextButton Configuration
  • Script Definitions

local ScreenGui = Instance.

new("ScreenGui")
local Frame = [Link]("Frame")
local TextButton = [Link]("TextButton")
local TextLabel = [Link]("TextLabel")
local TextButton_2 = [Link]("TextButton")
local WalkSpeedControl = [Link]("TextLabel")
local Close = [Link]("TextButton")
local Label = [Link]("TextLabel")
local Open = [Link]("TextButton")

--Properties:

[Link] = [Link]
[Link] = [Link]

[Link] = ScreenGui
Frame.BackgroundColor3 = [Link](0, 255, 0)
Frame.BorderColor3 = [Link](27, 42, 53)
[Link] = 3
[Link] = [Link](0.382299274, 0, 0.270377755, 0)
[Link] = [Link](0, 257, 0, 231)
[Link] = true
[Link] = true

[Link] = Frame
TextButton.BackgroundColor3 = [Link](255, 255, 0)
[Link] = 3
[Link] = [Link](0.71206224, 0, 0.63203454, 0)
[Link] = [Link](0, 74, 0, 73)
[Link] = [Link]
[Link] = "+"
TextButton.TextColor3 = [Link](0, 0, 0)
[Link] = true
[Link] = 14.000
[Link] = true

[Link] = Frame
TextLabel.BackgroundColor3 = [Link](255, 255, 255)
[Link] = 1.000
[Link] = [Link](0.33073929, 0, 0.29437235, 0)
[Link] = [Link](0, 87, 0, 70)
[Link] = [Link]
[Link] = "16"
TextLabel.TextColor3 = [Link](0, 0, 0)
[Link] = true
[Link] = 14.000
[Link] = true

TextButton_2.Parent = Frame
TextButton_2.BackgroundColor3 = [Link](255, 0, 0)
TextButton_2.BorderSizePixel = 3
TextButton_2.Position = [Link](0, 0, 0.63203454, 0)
TextButton_2.Size = [Link](0, 74, 0, 73)
TextButton_2.Font = [Link]
TextButton_2.Text = "-"
TextButton_2.TextColor3 = [Link](0, 0, 0)
TextButton_2.TextScaled = true
TextButton_2.TextSize = 14.000
TextButton_2.TextWrapped = true

[Link] = "WalkSpeed Control"


[Link] = Frame
WalkSpeedControl.BackgroundColor3 = [Link](0, 255, 0)
[Link] = 3
[Link] = [Link](0.000976324081, 0, -0.00234955549, 0)
[Link] = [Link](0, 257, 0, 59)
[Link] = [Link]
[Link] = "Walkspeed Control"
WalkSpeedControl.TextColor3 = [Link](0, 0, 0)
[Link] = true
[Link] = 14.000
[Link] = true

[Link] = "Close"
[Link] = Frame
Close.BackgroundColor3 = [Link](255, 255, 255)
[Link] = [Link](1, 0, -0.0259740278, 0)
[Link] = [Link](0, 63, 0, 69)
[Link] = [Link]
[Link] = [Link]
[Link] = "X"
Close.TextColor3 = [Link](255, 0, 0)
[Link] = true
[Link] = 14.000
[Link] = true

[Link] = "Label"
[Link] = Frame
Label.BackgroundColor3 = [Link](0, 255, 0)
Label.BorderColor3 = [Link](27, 42, 53)
[Link] = 3
[Link] = [Link](0, 0, 0.99999994, 0)
[Link] = [Link](0, 257, 0, 50)
[Link] = [Link]
[Link] = "Made by Roblox Scripter"
Label.TextColor3 = [Link](0, 0, 0)
[Link] = true
[Link] = 14.000
[Link] = true

[Link] = "Open"
[Link] = ScreenGui
Open.BackgroundColor3 = [Link](255, 255, 255)
[Link] = [Link](-0.00074955821, 0, 0.520874739, 0)
[Link] = [Link](0, 200, 0, 50)
[Link] = [Link]
[Link] = [Link]
[Link] = "Open"
Open.TextColor3 = [Link](255, 255, 255)
[Link] = true
[Link] = 14.000
[Link] = true

-- Scripts:

local function QDTZQ_fake_script() -- [Link]


local script = [Link]('LocalScript', TextButton)

local label = [Link] --- defines the number

[Link].MouseButton1Click:Connect(function() --- when the button is


clicked it calls this function
[Link] =
[Link] +5--- defines the player and
addition to walk speed
[Link] = [Link] ---
tells the text label that displays walk speed to update
end)
end
[Link](QDTZQ_fake_script)()
local function UCADA_fake_script() -- TextButton_2.LocalScript
local script = [Link]('LocalScript', TextButton_2)

local label = [Link] --- defines the number

[Link].MouseButton1Click:Connect(function() --- when the button is


clicked it calls this function
[Link] =
[Link] -5--- defines the player and
addition to walk speed
[Link] = [Link] ---
tells the text label that displays walk speed to update
end)
end
[Link](UCADA_fake_script)()
local function YDSA_fake_script() -- [Link]
local script = [Link]('LocalScript', Close)

[Link] = false
[Link].MouseButton1Click:Connect(function()
[Link] = false
[Link] = true
end)
end
[Link](YDSA_fake_script)()
local function ZFFOR_fake_script() -- [Link]
local script = [Link]('LocalScript', Open)

[Link] = true
[Link].MouseButton1Click:Connect(function()
[Link] = false
[Link] = true
end)
end
[Link](ZFFOR_fake_script)()

local ScreenGui = Instance.new("ScreenGui")
local Frame = Instance.new("Frame")
local TextButton = Instance.new("TextButton")
TextButton_2.TextSize = 14.000
TextButton_2.TextWrapped = true
WalkSpeedControl.Name = "WalkSpeed Control"
WalkSpeedControl.P
local script = Instance.new('LocalScript', TextButton)
local label = script.Parent.Parent.TextLabel --- defines the number
sc

You might also like