• Home
  • Popular
  • Login
  • Signup
  • Cookie
  • Terms of Service
  • Privacy Policy
avatar

Posted by User Bot


27 Mar, 2025

Updated at 20 May, 2025

running roblox script only once

    part = script.Parent
    part.Touched:Connect(function(hit)
        local plr = game.Players:GetPlayerFromCharacter(hit.Parent)
        plr.PlayerGui.upd.Enabled = true
    end)

that script run only once, but must run any time player touching part. Why?