I put this normal script in serverscriptservice but every time when i launch it it doesnt work well
i havent any error in output
local dis = script.dismembered
local pain = script.pain
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
local Cloned = dis:Clone()
Cloned.Parent = character.Head
local cloned = pain:Clone()
cloned.Parent = character.Head
end)
end)
I don’t understand what you mean, can you please elaborate.
uh, well my english is bad so there:
This script dont clone these sounds into character’s head
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
local dis = script:WaitForChild(“dismembered”)
local pain = script:WaitForChild(“pain”)
local Cloned = dis:Clone()
Cloned.Parent = character:WaitForChild(“Head”)
local cloned = pain:Clone()
cloned.Parent = character:WaitForChild(“Head”)
end)
end)
Try this
1 Like