Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Main = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local TextButton = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Main.Name = "Main"
- Main.Parent = ScreenGui
- Main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Main.Position = UDim2.new(0.363293529, 0, 0.28638497, 0)
- Main.Size = UDim2.new(0, 340, 0, 190)
- Main.Style = Enum.FrameStyle.ChatBlue
- TextLabel.Parent = Main
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 154, 3)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.Position = UDim2.new(-0.025588274, 0, -0.0890700519, 0)
- TextLabel.Size = UDim2.new(0, 325, 0, 50)
- TextLabel.Font = Enum.Font.SciFi
- TextLabel.Text = "Voided and Zorkel WalkSpeed Gui"
- TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextWrapped = true
- TextButton.Parent = Main
- TextButton.BackgroundColor3 = Color3.fromRGB(255, 33, 33)
- TextButton.Position = UDim2.new(0.136470661, 0, 0.458670378, 0)
- TextButton.Size = UDim2.new(0, 224, 0, 58)
- TextButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
- TextButton.Font = Enum.Font.SciFi
- TextButton.Text = "Click To Activate"
- TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.TextScaled = true
- TextButton.TextSize = 14.000
- TextButton.TextWrapped = true
- TextButton.MouseButton1Down:connect(function()
- while true do wait() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 60 end
- Walkspeed()
- end)
- -- Scripts:
- local function LASGYB_fake_script() -- ScreenGui.Script
- local script = Instance.new('Script', ScreenGui)
- frame = script.Parent.Main -- Take out {}s, and put name of frame
- frame.Draggable = true
- frame.Active = true
- frame.Selectable = true
- end
- coroutine.wrap(LASGYB_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement