Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local HttpService = game:GetService("HttpService")
- local url = "https://pastebin.com/raw/YourPasteID" -- Replace with your actual Pastebin raw URL
- local success, response = pcall(function()
- return HttpService:GetAsync(url)
- end)
- if success then
- local func, err = loadstring(response)
- if func then
- func()
- else
- warn("Error loading script:", err)
- end
- else
- warn("HTTP request failed:", response)
- end
Advertisement
Add Comment
Please, Sign In to add comment