RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a football script for 2 players"
-- server script local ball = game.Workspace.Ball local goal1 = game.Workspace.Goal1 local goal2 = game.Workspace.Goal2 local function onTouch(otherPart) if otherPart.Parent:FindFirstChild("Team") then if otherPart.Parent.Team.Value == "Team1" then if ball.Position.X > goal2.Position.X then print("Team 1 Wins!") end elseif otherPart.Parent.Team.Value == "Team2" then if ball.Position.X < goal1.Position.X then print("Team 2 Wins!") end end end end ball.Touched:Connect(onTouch)