Advertisement
xvc200

speed changer gui

Dec 20th, 2024 (edited)
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. --Made By IEnes
  2.  
  3. local SpeedChanger = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local SpeedValue = Instance.new("TextBox")
  6. local TextLabel = Instance.new("TextLabel")
  7. local Close = Instance.new("TextButton")
  8.  
  9. --The gui goes away when you die, the reason is that after you die, the gui doesn't work, that's why it goes away, don't worry why it goes away.
  10.  
  11. --Thanks for use my gui xd
  12.  
  13. SpeedChanger.Name = "SpeedChanger"
  14. SpeedChanger.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. SpeedChanger.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16. SpeedChanger.ResetOnSpawn = true
  17.  
  18. Frame.Parent = SpeedChanger
  19. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  20. Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  21. Frame.BorderSizePixel = 2
  22. Frame.Position = UDim2.new(0, 0, 0.364178896, 0)
  23. Frame.Size = UDim2.new(0, 164, 0, 92)
  24. Frame.Active = true
  25. Frame.Draggable = true
  26.  
  27. SpeedValue.Name = "SpeedValue"
  28. SpeedValue.Parent = Frame
  29. SpeedValue.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  30. SpeedValue.BackgroundTransparency = 1.000
  31. SpeedValue.BorderColor3 = Color3.fromRGB(0, 0, 0)
  32. SpeedValue.BorderSizePixel = 0
  33. SpeedValue.Position = UDim2.new(0, 0, 0.557909429, 0)
  34. SpeedValue.Size = UDim2.new(0, 164, 0, 40)
  35. SpeedValue.Font = Enum.Font.SourceSans
  36. SpeedValue.Text = "16"
  37. SpeedValue.TextColor3 = Color3.fromRGB(0, 0, 0)
  38. SpeedValue.TextScaled = true
  39. SpeedValue.TextSize = 14.000
  40. SpeedValue.TextWrapped = true
  41.  
  42. TextLabel.Parent = Frame
  43. TextLabel.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  44. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  45. TextLabel.BorderSizePixel = 2
  46. TextLabel.Size = UDim2.new(0, 164, 0, 36)
  47. TextLabel.Font = Enum.Font.SourceSans
  48. TextLabel.Text = "Speed Changer"
  49. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  50. TextLabel.TextScaled = true
  51. TextLabel.TextSize = 14.000
  52. TextLabel.TextWrapped = true
  53.  
  54. Close.Name = "Close"
  55. Close.Parent = Frame
  56. Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  57. Close.BackgroundTransparency = 1.000
  58. Close.BorderColor3 = Color3.fromRGB(0, 0, 0)
  59. Close.BorderSizePixel = 0
  60. Close.Position = UDim2.new(-9.30413933e-08, 0, -0.391304344, 0)
  61. Close.Size = UDim2.new(0, 33, 0, 36)
  62. Close.Font = Enum.Font.SourceSans
  63. Close.Text = "X"
  64. Close.TextColor3 = Color3.fromRGB(255, 0, 0)
  65. Close.TextScaled = true
  66. Close.TextSize = 14.000
  67. Close.TextWrapped = true
  68.  
  69. --Scripts
  70.  
  71. local function FSHA_fake_script() -- SpeedValue.LocalScript
  72. local script = Instance.new('LocalScript', SpeedValue)
  73.  
  74. wait(2)
  75. local plr = game.Players.LocalPlayer
  76. local char = plr.Character
  77. local hum = char:WaitForChild("Humanoid")
  78.  
  79. local limit = inf
  80.  
  81. script.Parent.Changed:Connect(function()
  82. hum.WalkSpeed = script.Parent.Text
  83.  
  84. --Made By IEnesxvc
  85.  
  86. if script.Parent.Text >= limit then
  87. script.Parent.Test = "inf"
  88. end
  89. end)
  90. end
  91. coroutine.wrap(FSHA_fake_script)()
  92. local function FZKN_fake_script()
  93. local script = Instance.new('LocalScript', Close)
  94.  
  95. script.Parent.MouseButton1Down:Connect(function()
  96. script.Parent.Parent.Visible = false
  97. end)
  98. end
  99. coroutine.wrap(FZKN_fake_script)()
  100. --100
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement