#I can't seem to get the HumanoidRootPart
18 messages · Page 1 of 1 (latest)
** You are now Level 1! **
how can I make it so where it gives me the player instead? do i have to use hit function instead?
Anyways if it does work, the arm will just move, not rotate.
Also all the tweens will play at once.
try this
(change Player variable to "hit" first)
local character = hit.Parent
if not character then
break
end
local player = game.Players:GetPlayerFromCharacter(character)
where would i put this?
** You are now Level 1! **
you can place it under the "Part.Debounce.Value = true"
says the break needs to be in a loop
oh, i mistyped. Its "return"
it worked i love you
👍
hey i just realized this would work better:
if not hit.Parent:FindFirstChild("Humanoid") then return end
local char = hit.Parent
local plr = game.Players:GetPlayerFromCharacter(char)
this is way safer
@near umbra
okay thank you
so