RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"gore effect"
-- server script local part = script.Parent local function gore(otherPart) local character = otherPart.Parent local humanoid = character:FindFirstChildWhichIsA("Humanoid") if humanoid then local blood = Instance.new("Part", workspace) blood.BrickColor = BrickColor.new("Bright red") blood.FormFactor = "Custom" blood.Material = "Neon" blood.Transparency = 0.25 blood.Anchored = true blood.Locked = true blood.CanCollide = false local distance = (part.CFrame.p - otherPart.Position).magnitude blood.Size = Vector3.new(0.3, 0.3, distance) blood.CFrame = CFrame.new(part.CFrame.p, otherPart.Position) * CFrame.new(0, 0, -distance / 2) wait(5) blood:Destroy() end end part.Touched:Connect(gore)