MaxproGlitcher

Pour mettre le Gui invisible lors du Screen shot sur roblox

May 13th, 2025 (edited)
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. local CaptureService = game:GetService("CaptureService")
  2. CaptureService.CaptureBegan:Connect(function()
  3. gui.Enabled = false
  4. end)
  5.  
  6. CaptureService.CaptureEnded:Connect(function()
  7. task.delay(0.1, function()
  8. gui.Enabled = true
  9. end)
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment