Advertisement
Guest User

Untitled

a guest
Nov 17th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 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 TextLabel = Instance.new("TextLabel")
  7. local ws = Instance.new("TextBox")
  8. local exc = Instance.new("TextButton")
  9. local Exit = Instance.new("TextButton")
  10. --Properties:
  11. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  15. Frame.BackgroundTransparency = 0.5
  16. Frame.BorderColor3 = Color3.new(1, 1, 1)
  17. Frame.Position = UDim2.new(0.363781214, 0, 0.180602014, 0)
  18. Frame.Size = UDim2.new(0, 183, 0, 192)
  19. Frame.Active = true
  20. Frame.Visible = true
  21. Frame.Draggable = true
  22.  
  23. TextLabel.Parent = Frame
  24. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  25. TextLabel.BackgroundTransparency = 0.5
  26. TextLabel.BorderColor3 = Color3.new(1, 1, 1)
  27. TextLabel.Size = UDim2.new(0, 125, 0, 50)
  28. TextLabel.Font = Enum.Font.SourceSans
  29. TextLabel.Text = "Walkspeed Hack"
  30. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  31. TextLabel.TextSize = 14
  32.  
  33. ws.Name = "ws"
  34. ws.Parent = Frame
  35. ws.BackgroundColor3 = Color3.new(1, 1, 1)
  36. ws.BackgroundTransparency = 0.5
  37. ws.BorderColor3 = Color3.new(1, 1, 1)
  38. ws.Position = UDim2.new(0, 0, 0.739583313, 0)
  39. ws.Size = UDim2.new(0, 183, 0, 50)
  40. ws.Font = Enum.Font.SourceSans
  41. ws.Text = "16"
  42. ws.TextColor3 = Color3.new(0, 0, 0)
  43. ws.TextSize = 14
  44.  
  45. exc.Name = "exc"
  46. exc.Parent = Frame
  47. exc.BackgroundColor3 = Color3.new(1, 1, 1)
  48. exc.BackgroundTransparency = 0.5
  49. exc.BorderColor3 = Color3.new(1, 1, 1)
  50. exc.Position = UDim2.new(0, 0, 0.479166657, 0)
  51. exc.Size = UDim2.new(0, 183, 0, 50)
  52. exc.Modal = true
  53. exc.Font = Enum.Font.SourceSans
  54. exc.Text = "Set Walkspeed"
  55. exc.TextColor3 = Color3.new(0, 0, 0)
  56. exc.TextSize = 14
  57.  
  58. Exit.Name = "Exit"
  59. Exit.Parent = Frame
  60. Exit.BackgroundColor3 = Color3.new(1, 1, 1)
  61. Exit.BackgroundTransparency = 0.5
  62. Exit.BorderColor3 = Color3.new(1, 1, 1)
  63. Exit.Position = UDim2.new(0.678103924, 0, 0, 0)
  64. Exit.Size = UDim2.new(0, 59, 0, 50)
  65. Exit.Modal = true
  66. Exit.Font = Enum.Font.SourceSans
  67. Exit.Text = "Exit"
  68. Exit.TextColor3 = Color3.new(0, 0, 0)
  69. Exit.TextSize = 14
  70. -- Scripts:
  71.  
  72. exc.MouseButton1Click:connect(function()
  73. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = ws.Text
  74. end)
  75.  
  76. Exit.MouseButton1Click:connect(function()
  77. Frame.Visible = false
  78. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement