Advertisement
BoboTheScripter

Untitled

Mar 17th, 2025 (edited)
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. setclipboard("https://discord.gg/C6Z4RY9YBn")
  3.  
  4. local function setUnixTime()
  5. local unixTime = tick()
  6. getgenv().startTime = unixTime
  7. end
  8.  
  9. setUnixTime()
  10.  
  11. if not getgenv().yetexecuted then
  12. getgenv().yetexecuted = true
  13.  
  14. local bindable = Instance.new("BindableFunction")
  15. function bindable.OnInvoke(buttonPressed)
  16. if buttonPressed == "Yes" then
  17. loadstring(game:HttpGet("https://pastebin.com/raw/RWudY1gq"))()
  18. elseif buttonPressed == "No" then
  19. print("Ok")
  20. end
  21. end
  22.  
  23. local success, errorMsg = pcall(function()
  24. game.StarterGui:SetCore("SendNotification", {
  25. Title = "Load script ?",
  26. Text = "Press yes to load",
  27. Icon = "rbxassetid://100114254182961",
  28. Duration = 90,
  29. Callback = bindable,
  30. Button1 = "Yes",
  31. Button2 = "No"
  32. })
  33. end)
  34.  
  35. if not success then
  36. game.StarterGui:SetCore("SendNotification", {
  37. Title = "Error",
  38. Text = "Script is paused..",
  39. Icon = "rbxassetid://100114254182961",
  40. Duration = 10
  41. })
  42.  
  43. game.StarterGui:SetCore("SendNotification", {
  44. Title = "Info",
  45. Text = "Script is online but cannot connect to server.",
  46. Icon = "rbxassetid://100114254182961",
  47. Duration = 10
  48. })
  49.  
  50. wait(30)
  51. Players.LocalPlayer:Kick("Restart Roblox and try again.")
  52. end
  53. else
  54. game.StarterGui:SetCore("SendNotification", {
  55. Title = "Notification",
  56. Text = "uhh try pressing rightshift",
  57. Icon = "rbxassetid://100114254182961",
  58. Duration = 10
  59. })
  60.  
  61. game.StarterGui:SetCore("SendNotification", {
  62. Title = "Notification",
  63. Text = "wait for the game to load or rejoin.",
  64. Icon = "rbxassetid://100114254182961",
  65. Duration = 10
  66. })
  67. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement