Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1.  
  2. WORKSPACE SCRIPT
  3.  
  4. game.Players.PlayerAdded:connect(function(player)
  5. repeat wait() until player.PlayerGui:FindFirstChild("StartMenu")
  6. repeat wait() until player.Character:findFirstChild("Humanoid")
  7.  
  8. player.PlayerGui.StartMenu.Frame.Visible = true
  9. player.Character.Humanoid.WalkSpeed = 0
  10. end)
  11. -----------------------------------------
  12. STARTER-GUI SCRIPT
  13.  
  14. script.Parent.MouseButton1Click:connect(function()
  15. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  16. script.Parent.Parent.Parent:Destroy()
  17. end)
  18. -----------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement