Advertisement
Sungmingamerpro13

Become the Monster Gamepass

Sep 22nd, 2021
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local PlayerWhoWillBeMonster = game.Players:GetChildren()[math.random(1,#Players:GetChildren())]
  3. local Character = game.ReplicatedStorage.Monster:Clone() -- Change for You Monster
  4. local MonsterFrame = script.Parent.BeTheMonsterFrame
  5. local MonsterButton = MonsterFrame.MonsterButton
  6. local PlayerButton = MonsterFrame.PlayerCharacterButton
  7. MonsterButton.MouseButton1Click:Connect(function()
  8.  
  9. Character.Name = PlayerWhoWillBeMonster.Name
  10.  
  11. PlayerWhoWillBeMonster.Character = Character
  12.  
  13. Character = workspace
  14.  
  15. PlayerWhoWillBeMonster.Character.HumanoidRootPart.Position = Vector3.new(-142.07, 6.481, -328.72)
  16.  
  17. wait()
  18.  
  19. wait(30)
  20.  
  21. wait(1)
  22.  
  23. PlayerWhoWillBeMonster:LoadCharacter()
  24. end)
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement