Advertisement
voidedscriptdump

FE Fixed Walkspeed Gui

Nov 12th, 2021
3,160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.
  3. -- Instances:
  4.  
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local Main = Instance.new("Frame")
  7. local TextLabel = Instance.new("TextLabel")
  8. local TextButton = Instance.new("TextButton")
  9.  
  10. --Properties:
  11.  
  12. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13.  
  14. Main.Name = "Main"
  15. Main.Parent = ScreenGui
  16. Main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  17. Main.Position = UDim2.new(0.363293529, 0, 0.28638497, 0)
  18. Main.Size = UDim2.new(0, 340, 0, 190)
  19. Main.Style = Enum.FrameStyle.ChatBlue
  20.  
  21. TextLabel.Parent = Main
  22. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 154, 3)
  23. TextLabel.BackgroundTransparency = 1.000
  24. TextLabel.Position = UDim2.new(-0.025588274, 0, -0.0890700519, 0)
  25. TextLabel.Size = UDim2.new(0, 325, 0, 50)
  26. TextLabel.Font = Enum.Font.SciFi
  27. TextLabel.Text = "Voided and Zorkel WalkSpeed Gui"
  28. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  29. TextLabel.TextScaled = true
  30. TextLabel.TextSize = 14.000
  31. TextLabel.TextWrapped = true
  32.  
  33. TextButton.Parent = Main
  34. TextButton.BackgroundColor3 = Color3.fromRGB(255, 33, 33)
  35. TextButton.Position = UDim2.new(0.136470661, 0, 0.458670378, 0)
  36. TextButton.Size = UDim2.new(0, 224, 0, 58)
  37. TextButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  38. TextButton.Font = Enum.Font.SciFi
  39. TextButton.Text = "Click To Activate"
  40. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  41. TextButton.TextScaled = true
  42. TextButton.TextSize = 14.000
  43. TextButton.TextWrapped = true
  44. TextButton.MouseButton1Down:connect(function()
  45. while true do wait() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 60 end
  46. Walkspeed()
  47. end)
  48. -- Scripts:
  49.  
  50. local function LASGYB_fake_script() -- ScreenGui.Script
  51. local script = Instance.new('Script', ScreenGui)
  52.  
  53. frame = script.Parent.Main -- Take out {}s, and put name of frame
  54. frame.Draggable = true
  55. frame.Active = true
  56. frame.Selectable = true
  57. end
  58. coroutine.wrap(LASGYB_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement