Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local plr = game.Players.lafur2
- local tool = Instance.new("Tool", plr.Backpack)
- local h = Instance.new("Part", tool)
- h.Name = "Handle"
- h.Size = Vector3.new(0.4,4,0.4)
- h.Material = Enum.Material.Neon;
- tool.GripPos = Vector3.new(0,-1,0)
- tool.Activated:connect(function()
- h.Size = Vector3.new(1000,1000,1000)
- tool.GripPos = Vector3.new(0,0,5)
- wait(1)
- h.Size = Vector3.new(0.4,4,0.4)
- tool.GripPos = Vector3.new(0,-1,0)
- end)
- h.Touched:connect(function(hitname)
- local hit = game.Players:FindFirstChild(hitname.Parent.Name)
- if hit then
- hit:Destroy()
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement