Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --This script will be updated automatically from pastebin, so you won't have to re-create it in script builders every new update! Recommended to use in Void Script Builder.
- --Script made for Roblox.
- wait(1)
- if game.Players.LocalPlayer.Character:FindFirstChild("UpperTorso") then
- error("Player R15 - couldn't run script, try changing to R6")
- end
- game.Players.CharacterAutoLoads = false
- charnames = {"Shirt","Pants","ShirtGraphic","ShirtGraphics","Hat","Accessory"}
- base = workspace:FindFirstChild("Base")
- if base == nil then
- base = workspace:FindFirstChild("Baseplate")
- end
- clone = base:Clone()
- clone.Parent = workspace
- clone.CollisionGroupId = 31
- lp = game.Players.LocalPlayer
- char = lp.Character
- head = char.Head
- hum = char.Humanoid
- mouse = lp:GetMouse()
- hum.Died:connect(function()
- game.Players.CharacterAutoLoads = true
- error("Player died")
- end)
- gc = char:GetChildren()
- for i=1, #gc do
- wait(0.01)
- for a=1, #charnames do
- if gc[i].ClassName == charnames[a] then
- gc[i]:Destroy()
- end
- end
- end
- findbc = char:FindFirstChildOfClass("BodyColors")
- if findbc then
- findbc:Destroy()
- end
- newbc = Instance.new("BodyColors",char)
- newbc.HeadColor = BrickColor.DarkGray()
- newbc.LeftArmColor = BrickColor.DarkGray()
- newbc.RightArmColor = BrickColor.DarkGray()
- newbc.TorsoColor = BrickColor.Black()
- newbc.LeftLegColor = BrickColor.Black()
- newbc.RightLegColor = BrickColor.Black()
- findface = head:FindFirstChildOfClass("Decal")
- if findface then
- findface.Texture = "rbxasset://textures/face.png"
- end
- smokel = Instance.new("Smoke",char["Left Leg"])
- smoker = Instance.new("Smoke",char["Right Leg"])
- smokel.Color = Color3.new(0,0,0)
- smoker.Color = Color3.new(0,0,0)
- smokel.Size = 3
- smoker.Size = 3
- hum.WalkSpeed = 12
- mouse.Button1Down:connect(function()
- target = mouse.Target
- if target.ClassName == "Part" and target.Name == "Head" then
- ghostchar = target.Parent
- ghostplr = game:GetService("Players"):GetPlayerFromCharacter(ghostchar)
- ghostcframe = target.CFrame
- game.Players.CharacterAutoLoads = true
- ghosthum = ghostchar:FindFirstChildOfClass("Humanoid")
- ghosthum.Health = ghosthum.MaxHealth
- wait(0.1)
- ghosthum.Health = 0
- wait(6)
- game.Players.CharacterAutoLoads = false
- ghostchar = ghostplr.Character
- ghostchar.Head.CFrame = ghostcframe
- gc = ghostchar:GetChildren()
- for i=1, #gc do
- wait(0.01)
- if gc[i].ClassName == "Part" then
- gc[i].Transparency = 0.5
- gc[i].CollisionGroupId = 31
- end
- end
- gc = ghostchar:GetChildren()
- for i=1, #gc do
- wait(0.01)
- for a=1, #charnames do
- if gc[i].ClassName == charnames[a] then
- gc[i]:Destroy()
- end
- end
- end
- ghosthum.MaxHealth = 9999
- ghosthum.Health = 9999
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement