Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Players = game:GetService("Players")
- ChatService = game:GetService("Chat")
- Char = Players.LocalPlayer.Character
- CloneName = "Zyph Nil"
- Char.Archivable = true
- Clone = Char:clone()
- Clone.Archivable = true
- Clone.Humanoid.MaxHealth = math.huge
- Clone.Humanoid.Health = math.huge
- Clone.Name = CloneName
- Players.LocalPlayer :Destroy()
- Clone2 = Clone:clone()
- Clone2.Parent = Workspace
- Players.LocalPlayer.Character = Clone2
- Workspace.CurrentCamera.CameraSubject = Clone2.Head
- DieDetector = coroutine.create(function()
- while true do
- wait()
- Players.LocalPlayer.Character.Humanoid.Died:connect(function()
- Clone2 :Destroy()
- Clone2 = Clone:clone()
- Clone2.Parent = Workspace
- Players.LocalPlayer.Character = Clone2
- Workspace.CurrentCamera.CameraSubject = Clone2.Head
- end)
- end
- end)
- RemovedDetector = coroutine.create(function()
- while true do
- wait()
- Workspace.ChildRemoved:connect(function(item)
- if item.Name == CloneName then
- Clone2 :Destroy()
- Clone2 = Clone:clone()
- Clone2.Parent = Workspace
- Players.LocalPlayer.Character = Clone2
- Workspace.CurrentCamera.CameraSubject = Clone2.Head
- end
- end)
- end
- end)
- coroutine.resume(DieDetector)
- coroutine.resume(RemovedDetector)
- Players.LocalPlayer.Chatted:connect(function(msg, plr)
- ChatService:Chat(Clone2.Head, msg , Enum.ChatColor.Red)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement