You can write your topic however you want, but you need to answer these questions:
-
What do you want to achieve? Keep it simple and clear!
My Players keep colliding into each other when I run into one of em with the football. -
What is the issue? Include screenshots / videos if possible!
-
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I have asked in the dev discords but no response yet.
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
Football.Touched:Connect(function(Touched)
Stop()
local Character = nil
if not TouchDebounce then
TouchDebounce = true
if Touched.Parent:FindFirstChild("Humanoid") and not Football.Parent:FindFirstChild("Humanoid") then
Character = Touched.Parent
elseif Touched.Parent.Parent:FindFirstChild("Humanoid") and not Football.Parent.Parent:FindFirstChild("Humanoid") then
Character = Touched.Parent.Parent
end
if Character then
if Ready and AreTouching(Football.Position, Touched.Position) then
if Handoff then
Ready = false
Handoff = true
Football.Parent = Character
task.wait(1/4)
Handoff = false
Ready = true
else
if Character.Hitbox.Values.Catch.Value == true then
Ready = false
Handoff = false
Football.Parent = Character
task.wait(1/4)
Ready = true
end
end
end
end
TouchDebounce = false
end
end)
Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.