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)