Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local RS = game:GetService("ReplicatedStorage")
- local Players = game:GetService("Players")
- local player = Players.LocalPlayer
- local HorrorSoundPart = workspace:WaitForChild("HorrorSoundPart")
- local EventSoundPart = HorrorSoundPart:WaitForChild("EventSoundPart")
- local Sound = HorrorSoundPart:WaitForChild("SoundDoor1"):WaitForChild("Piano Keys Impact 7 (SFX)")
- local ModelRe = RS:WaitForChild("ModelRe")
- local Mali = ModelRe:WaitForChild("Mali")
- local Check = false
- EventSoundPart.Touched:Connect(function(touchPart)
- if Check == false then
- Check = true
- local character = touchPart.Parent
- local player = Players:GetPlayerFromCharacter(character)
- local hmn = character:FindFirstChild("Humanoid")
- Sound:Play()
- EventSoundPart:Destroy()
- local MaliClone = Mali:Clone()
- MaliClone.Parent = workspace
- task.wait(3)
- workspace:FindFirstChild("Mali"):Destroy()
- script:Destroy()
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement