Advertisement
JasonHacks

Better script

Mar 1st, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextButton = Instance.new("TextButton")
  7. local TextBox = Instance.new("TextBox")
  8. --Properties:
  9. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  10. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11.  
  12. Frame.Parent = ScreenGui
  13. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  14. Frame.Position = UDim2.new(0.279702961, 0, 0.481698334, 0)
  15. Frame.Size = UDim2.new(0, 234, 0, 92)
  16.  
  17. TextButton.Parent = Frame
  18. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  19. TextButton.Position = UDim2.new(0.0726495758, 0, 0.456521749, 0)
  20. TextButton.Size = UDim2.new(0, 200, 0, 50)
  21. TextButton.Font = Enum.Font.SourceSans
  22. TextButton.Text = "Ws"
  23. TextButton.TextColor3 = Color3.new(0, 0, 0)
  24. TextButton.TextSize = 14
  25. TextButton.MouseButton1Click:connect(function() -- So thats it to make a simple click function :)A
  26. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = TextBox.Text
  27. end)
  28.  
  29. TextBox.Parent = Frame
  30. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  31. TextBox.Position = UDim2.new(0.0726495758, 0, 0, 0)
  32. TextBox.Size = UDim2.new(0, 200, 0, 36)
  33. TextBox.Font = Enum.Font.SourceSans
  34. TextBox.Text = "what i need to do is "
  35. TextBox.TextColor3 = Color3.new(0, 0, 0)
  36. TextBox.TextSize = 14
  37. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement