RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"part named RedOrb on touch with upper torso must give player perm walksped 1"
-- script for RedOrb local part = script.Parent local function onTouched(otherPart) local player = game.Players:GetPlayerFromCharacter(otherPart.Parent) if player and otherPart.Name == "UpperTorso" then player.Character.Humanoid.WalkSpeed = 1 end end part.Touched:Connect(onTouched)