Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Players = game:GetService("Players")
- local PlayerWhoWillBeMonster = game.Players:GetChildren()[math.random(1,#Players:GetChildren())]
- local Character = game.ReplicatedStorage.Monster:Clone() -- Change for You Monster
- local MonsterFrame = script.Parent.BeTheMonsterFrame
- local MonsterButton = MonsterFrame.MonsterButton
- local PlayerButton = MonsterFrame.PlayerCharacterButton
- MonsterButton.MouseButton1Click:Connect(function()
- Character.Name = PlayerWhoWillBeMonster.Name
- PlayerWhoWillBeMonster.Character = Character
- Character = workspace
- PlayerWhoWillBeMonster.Character.HumanoidRootPart.Position = Vector3.new(-142.07, 6.481, -328.72)
- wait()
- wait(30)
- wait(1)
- PlayerWhoWillBeMonster:LoadCharacter()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement