Watcher1441

Walkspeed Changer FE Script

Jul 18th, 2024
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local Script = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextButton = Instance.new("TextButton")
  10. local UICorner = Instance.new("UICorner")
  11. local TextButton_2 = Instance.new("TextButton")
  12. local UICorner_2 = Instance.new("UICorner")
  13. local TextButton_3 = Instance.new("TextButton")
  14. local UICorner_3 = Instance.new("UICorner")
  15.  
  16. --Properties:
  17.  
  18. Script.Name = "Script"
  19. Script.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  20. Script.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  21.  
  22. Frame.Parent = Script
  23. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  24. Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  25. Frame.BorderSizePixel = 3
  26. Frame.Position = UDim2.new(0.00902934559, 0, 0.682098746, 0)
  27. Frame.Size = UDim2.new(0, 258, 0, 195)
  28.  
  29. TextLabel.Parent = Frame
  30. TextLabel.BackgroundColor3 = Color3.fromRGB(47, 47, 47)
  31. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  32. TextLabel.BorderSizePixel = 3
  33. TextLabel.Position = UDim2.new(0.0852713212, 0, -0.148717955, 0)
  34. TextLabel.Size = UDim2.new(0, 213, 0, 50)
  35. TextLabel.Font = Enum.Font.FredokaOne
  36. TextLabel.Text = "FE Walkspeed Changer"
  37. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  38. TextLabel.TextSize = 14.000
  39.  
  40. TextButton.Parent = Frame
  41. TextButton.BackgroundColor3 = Color3.fromRGB(27, 27, 27)
  42. TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  43. TextButton.BorderSizePixel = 0
  44. TextButton.Position = UDim2.new(0.108527131, 0, 0.189743593, 0)
  45. TextButton.Size = UDim2.new(0, 200, 0, 36)
  46. TextButton.Font = Enum.Font.SourceSansBold
  47. TextButton.Text = "Slow"
  48. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  49. TextButton.TextSize = 14.000
  50.  
  51. UICorner.Parent = TextButton
  52.  
  53. TextButton_2.Parent = Frame
  54. TextButton_2.BackgroundColor3 = Color3.fromRGB(27, 27, 27)
  55. TextButton_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  56. TextButton_2.BorderSizePixel = 0
  57. TextButton_2.Position = UDim2.new(0.112403102, 0, 0.466666669, 0)
  58. TextButton_2.Size = UDim2.new(0, 200, 0, 36)
  59. TextButton_2.Font = Enum.Font.SourceSansBold
  60. TextButton_2.Text = "Normal"
  61. TextButton_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  62. TextButton_2.TextSize = 14.000
  63.  
  64. UICorner_2.Parent = TextButton_2
  65.  
  66. TextButton_3.Parent = Frame
  67. TextButton_3.BackgroundColor3 = Color3.fromRGB(27, 27, 27)
  68. TextButton_3.BorderColor3 = Color3.fromRGB(0, 0, 0)
  69. TextButton_3.BorderSizePixel = 0
  70. TextButton_3.Position = UDim2.new(0.112403102, 0, 0.733333349, 0)
  71. TextButton_3.Size = UDim2.new(0, 200, 0, 36)
  72. TextButton_3.Font = Enum.Font.SourceSansBold
  73. TextButton_3.Text = "Fast"
  74. TextButton_3.TextColor3 = Color3.fromRGB(255, 255, 255)
  75. TextButton_3.TextSize = 14.000
  76.  
  77. UICorner_3.Parent = TextButton_3
  78.  
  79. -- Scripts:
  80.  
  81. local function JGILAH_fake_script() -- TextButton.LocalScript
  82. local script = Instance.new('LocalScript', TextButton)
  83.  
  84. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 5
  85. end
  86. coroutine.wrap(JGILAH_fake_script)()
  87. local function XOWUPS_fake_script() -- TextButton_2.LocalScript
  88. local script = Instance.new('LocalScript', TextButton_2)
  89.  
  90. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  91. end
  92. coroutine.wrap(XOWUPS_fake_script)()
  93. local function XCNW_fake_script() -- TextButton_3.LocalScript
  94. local script = Instance.new('LocalScript', TextButton_3)
  95.  
  96. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  97. end
  98. coroutine.wrap(XCNW_fake_script)()
  99.  
Advertisement
Add Comment
Please, Sign In to add comment