Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ball = Instance.new("Part")
- ball.Shape = "Ball"
- ball.Color = Color3.fromRGB(255,0,0)
- ball.Material = "Neon"
- ball.CanCollide = false
- ball.Anchored = true
- ball.Size = Vector3.new(7,7,7)
- ball.CFrame = game.Players.abigfatseal.Character.Torso.CFrame
- ball.Parent = game.Workspace
- for i=1,150 do
- ball.Size = Vector3.new(1,1,1)
- ball.Transparency = ball.Transparency + .005
- wait(.001)
- end
- ball.Touched:Connect(function(th)
- if th.Parent:FindFirstChild("Humanoid") and th.Parent.Parent.Name ~= game.Players.LocalPlayer.Name then
- th.Parent:FindFirstChild("Humanoid").Health =th.Parent:FindFirstChild("Humanoid").Health - 50
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement