How To Make A Safe Zone (Roblox Scripting)

Опубликовано: 27 Май 2026
на канале: ReLic
24,072
353

Thanks For Watching Please Like And Subscribe!

Music:  / desmeon-undone-feat-steklo  

Group:https://www.roblox.com/My/Groups.aspx...

Script:
game.StarterGui.ScreenGui.TextLabel.Visible = false

script.Parent.Touched:connect(function(hit)
if hit.Parent:FindFirstChild("Humanoid") then
game.Players.LocalPlayer.PlayerGui.ScreenGui.TextLabel.Visible = true
game.Players.LocalPlayer.Character.Humanoid:UnequipTools()
end
end)

script.Parent.TouchEnded:connect(function()
game.Players.LocalPlayer.PlayerGui.ScreenGui.TextLabel.Visible = false
end)