Algarnr

Untitled

May 28th, 2025
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local HttpService = game:GetService("HttpService")
  2. local url = "https://pastebin.com/raw/YourPasteID" -- Replace with your actual Pastebin raw URL
  3. local success, response = pcall(function()
  4.     return HttpService:GetAsync(url)
  5. end)
  6. if success then
  7.     local func, err = loadstring(response)
  8.     if func then
  9.         func()
  10.     else
  11.         warn("Error loading script:", err)
  12.     end
  13. else
  14.     warn("HTTP request failed:", response)
  15. end
Advertisement
Add Comment
Please, Sign In to add comment