Advertisement
isakk12

boombox thingy hold

Feb 11th, 2022 (edited)
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.66 KB | None | 0 0
  1. local plr = game:GetService("Players").LocalPlayer
  2. local tool = plr.Character:FindFirstChildOfClass("Tool")
  3. local humanoid = plr.Character:FindFirstChildOfClass("Humanoid")
  4.  
  5. tool.GripForward = Vector3.new(-0, -1, 0)
  6. tool.GripPos = Vector3.new(0.05, 0.75, -0)
  7. tool.GripRight = Vector3.new(0, -0, -1)
  8. tool.GripUp = Vector3.new(-1, 0, -0)
  9.  
  10. tool.Parent = plr.Backpack
  11. wait()
  12. tool.Parent = plr.Character
  13. game:GetService("RunService").Stepped:Connect(function()
  14.     if not tool:FindFirstChild("toolanim") then
  15.         local Anim = Instance.new("StringValue")
  16.         Anim.Name = "toolanim"
  17.         Anim.Value = "Slash"
  18.         Anim.Parent = tool
  19.         wait()
  20.     end
  21. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement