nwmcytatynormalnie

Animal Restaurant Anomaly Auto Cook ESP Auto Serve

Aug 22nd, 2026
23
0
Never
Not a member of GistPad yet? Sign Up, it unlocks many cool features!
None 20.95 KB | None | 0 0
  1. local SCRIPT_URL = ""
  2. local httpGet = nil
  3. if syn and syn.request then
  4. httpGet = function(url) return syn.request({Url=url,Method="GET"}).Body end
  5. elseif http and http.request then
  6. httpGet = function(url) return http.request({Url=url,Method="GET"}).Body end
  7. elseif request then
  8. httpGet = function(url) return request({Url=url,Method="GET"}).Body end
  9. elseif game.HttpGet then
  10. httpGet = game.HttpGet
  11. end
  12.  
  13. local C_BG = Color3.fromRGB(12, 10, 20)
  14. local C_CARD = Color3.fromRGB(24, 22, 38)
  15. local C_ACCENT = Color3.fromRGB(130, 80, 255)
  16. local C_ACCENT2 = Color3.fromRGB(255, 70, 120)
  17. local C_TEXT = Color3.fromRGB(245, 240, 255)
  18. local C_GRAY = Color3.fromRGB(170, 165, 190)
  19.  
  20.  
  21. local player = game.Players.LocalPlayer
  22. if not player then return end
  23.  
  24. local ts = game:GetService("TweenService")
  25. local gui = Instance.new("ScreenGui", player.PlayerGui)
  26. gui.Name = "PrismaUltimate"
  27.  
  28. local bg = Instance.new("Frame", gui)
  29. bg.Size = UDim2.new(1,0,1,0)
  30. bg.BackgroundColor3 = C_BG
  31. bg.BackgroundTransparency = 1
  32. ts:Create(bg, TweenInfo.new(0.4), {BackgroundTransparency = 0.35}):Play()
  33.  
  34. local card = Instance.new("Frame", gui)
  35. card.Size = UDim2.new(0, 480, 0, 320)
  36. card.Position = UDim2.new(0.5, -240, 0.5, -160)
  37. card.BackgroundColor3 = C_CARD
  38. card.BorderSizePixel = 0
  39. card.ClipsDescendants = true
  40.  
  41. local grad = Instance.new("UIGradient", card)
  42. grad.Color = ColorSequence.new({
  43. ColorSequenceKeypoint.new(0, Color3.fromRGB(100, 70, 255)),
  44. ColorSequenceKeypoint.new(1, Color3.fromRGB(50, 30, 120))
  45. })
  46. grad.Rotation = 45
  47.  
  48. local corner = Instance.new("UICorner", card)
  49. corner.CornerRadius = UDim.new(0, 16)
  50.  
  51. card.Position = UDim2.new(0.5, -240, 0.5, -220)
  52. card.BackgroundTransparency = 0.8
  53. ts:Create(card, TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), {
  54. Position = UDim2.new(0.5, -240, 0.5, -160),
  55. BackgroundTransparency = 0
  56. }):Play()
  57.  
  58. local topBar = Instance.new("Frame", card)
  59. topBar.Size = UDim2.new(1,0,0,8)
  60. topBar.BackgroundColor3 = C_ACCENT
  61. topBar.BorderSizePixel = 0
  62. Instance.new("UICorner", topBar).CornerRadius = UDim.new(0,16)
  63.  
  64. local titleShadow = Instance.new("TextLabel", card)
  65. titleShadow.Size = UDim2.new(1,-30,0,40)
  66. titleShadow.Position = UDim2.new(0,16,0,22)
  67. titleShadow.Text = "🔐 PRISMA HUB KEY 24H"
  68. titleShadow.TextColor3 = Color3.fromRGB(0,0,0)
  69. titleShadow.TextTransparency = 0.6
  70. titleShadow.Font = Enum.Font.GothamBlack
  71. titleShadow.TextSize = 26
  72. titleShadow.BackgroundTransparency = 1
  73.  
  74. local title = Instance.new("TextLabel", card)
  75. title.Size = UDim2.new(1,-30,0,40)
  76. title.Position = UDim2.new(0,15,0,20)
  77. title.Text = "🔐 PRISMA HUB KEY 24H"
  78. title.TextColor3 = C_TEXT
  79. title.Font = Enum.Font.GothamBlack
  80. title.TextSize = 26
  81. title.BackgroundTransparency = 1
  82.  
  83. local sub = Instance.new("TextLabel", card)
  84. sub.Size = UDim2.new(1,-30,0,20)
  85. sub.Position = UDim2.new(0,15,0,65)
  86. sub.Text = "Obtain a token and unlock the hub"
  87. sub.TextColor3 = C_GRAY
  88. sub.Font = Enum.Font.GothamMedium
  89. sub.TextSize = 14
  90. sub.BackgroundTransparency = 1
  91.  
  92. local linkFrame = Instance.new("Frame", card)
  93. linkFrame.Size = UDim2.new(1,-30,0,42)
  94. linkFrame.Position = UDim2.new(0,15,0,100)
  95. linkFrame.BackgroundColor3 = Color3.fromRGB(18, 16, 28)
  96. linkFrame.BorderSizePixel = 0
  97. Instance.new("UICorner", linkFrame).CornerRadius = UDim.new(0,10)
  98.  
  99. local linkLabel = Instance.new("TextLabel", linkFrame)
  100. linkLabel.Size = UDim2.new(1,-52,1,0)
  101. linkLabel.Position = UDim2.new(0,12,0,0)
  102. linkLabel.Text = KEY_LINK
  103. linkLabel.TextColor3 = Color3.fromRGB(180, 160, 255)
  104. linkLabel.Font = Enum.Font.Code
  105. linkLabel.TextSize = 12
  106. linkLabel.BackgroundTransparency = 1
  107. linkLabel.TextTruncate = Enum.TextTruncate.AtEnd
  108.  
  109. local copyLinkBtn = Instance.new("TextButton", linkFrame)
  110. copyLinkBtn.Size = UDim2.new(0,44,0,44)
  111. copyLinkBtn.Position = UDim2.new(1,-44,0,-1)
  112. copyLinkBtn.BackgroundColor3 = C_ACCENT
  113. copyLinkBtn.Text = "📋"
  114. copyLinkBtn.TextColor3 = Color3.new(1,1,1)
  115. copyLinkBtn.Font = Enum.Font.GothamBold
  116. copyLinkBtn.TextSize = 20
  117. Instance.new("UICorner", copyLinkBtn).CornerRadius = UDim.new(0,10)
  118.  
  119. local tokenBox = Instance.new("TextBox", card)
  120. tokenBox.Size = UDim2.new(1,-30,0,48)
  121. tokenBox.Position = UDim2.new(0,15,0,160)
  122. tokenBox.PlaceholderText = "Paste your token here..."
  123. tokenBox.Text = ""
  124. tokenBox.BackgroundColor3 = Color3.fromRGB(18, 16, 28)
  125. tokenBox.TextColor3 = C_TEXT
  126. tokenBox.Font = Enum.Font.GothamMedium
  127. tokenBox.TextSize = 16
  128. tokenBox.ClearTextOnFocus = false
  129. Instance.new("UICorner", tokenBox).CornerRadius = UDim.new(0,10)
  130.  
  131. local progressBar = Instance.new("Frame", card)
  132. progressBar.Size = UDim2.new(1,-30,0,6)
  133. progressBar.Position = UDim2.new(0,15,0,218)
  134. progressBar.BackgroundColor3 = Color3.fromRGB(40, 35, 60)
  135. progressBar.BorderSizePixel = 0
  136. progressBar.Visible = false
  137. Instance.new("UICorner", progressBar).CornerRadius = UDim.new(0,3)
  138.  
  139. local progressFill = Instance.new("Frame", progressBar)
  140. progressFill.Size = UDim2.new(0,0,1,0)
  141. progressFill.BackgroundColor3 = C_ACCENT2
  142. progressFill.BorderSizePixel = 0
  143. Instance.new("UICorner", progressFill).CornerRadius = UDim.new(0,3)
  144.  
  145. local verifyBtn = Instance.new("TextButton", card)
  146. verifyBtn.Size = UDim2.new(1,-30,0,50)
  147. verifyBtn.Position = UDim2.new(0,15,0,235)
  148. verifyBtn.Text = "VERIFY & UNLOCK"
  149. verifyBtn.BackgroundColor3 = C_ACCENT2
  150. verifyBtn.TextColor3 = Color3.new(1,1,1)
  151. verifyBtn.Font = Enum.Font.GothamBlack
  152. verifyBtn.TextSize = 20
  153. Instance.new("UICorner", verifyBtn).CornerRadius = UDim.new(0,10)
  154.  
  155. local status = Instance.new("TextLabel", card)
  156. status.Size = UDim2.new(1,-30,0,20)
  157. status.Position = UDim2.new(0,15,0,293)
  158. status.Text = ""
  159. status.TextColor3 = C_ACCENT2
  160. status.Font = Enum.Font.GothamMedium
  161. status.TextSize = 13
  162. status.BackgroundTransparency = 1
  163.  
  164. local glow = Instance.new("ImageLabel", card)
  165. glow.Size = UDim2.new(1,0,1,0)
  166. glow.BackgroundTransparency = 1
  167. glow.Image = "rbxassetid://284402402"
  168. glow.ImageColor3 = C_ACCENT
  169. glow.ImageTransparency = 0.85
  170. glow.ScaleType = Enum.ScaleType.Fit
  171. glow.ZIndex = 0
  172.  
  173. copyLinkBtn.MouseButton1Click:Connect(function()
  174. if setclipboard then setclipboard(KEY_LINK)
  175. elseif syn and syn.write_clipboard then syn.write_clipboard(KEY_LINK)
  176. end
  177. status.Text = "✅ Link copied to clipboard!"
  178. task.wait(1.5)
  179. status.Text = ""
  180. end)
  181.  
  182. verifyBtn.MouseButton1Click:Connect(function()
  183. local token = tokenBox.Text:gsub("%s+", "")
  184. if token == "" then
  185. status.Text = "⚠️ Please paste your token"
  186. return
  187. end
  188.  
  189. if not httpGet then
  190. status.Text = "❌ HTTP not available in this executor"
  191. return
  192. end
  193.  
  194. verifyBtn.Text = "VERIFYING..."
  195. verifyBtn.Interactable = false
  196. progressBar.Visible = true
  197. progressFill.Size = UDim2.new(0,0,1,0)
  198. ts:Create(progressFill, TweenInfo.new(0.6, Enum.EasingStyle.Linear), {Size = UDim2.new(1,0,1,0)}):Play()
  199. status.Text = "⏳ Connecting to Work.ink..."
  200.  
  201. local url = "https://work.ink/_api/v2/token/isValid/"; .. token .. "?deleteToken=1"
  202. local success, response = pcall(httpGet, url)
  203.  
  204. if not success then
  205. status.Text = "❌ Connection error – try again"
  206. verifyBtn.Interactable = true
  207. verifyBtn.Text = "VERIFY & UNLOCK"
  208. progressBar.Visible = false
  209. return
  210. end
  211.  
  212. local data
  213. pcall(function()
  214. data = game:GetService("HttpService"):JSONDecode(response)
  215. end)
  216.  
  217. progressFill.Size = UDim2.new(1,0,1,0)
  218. task.wait(0.1)
  219. progressBar.Visible = false
  220.  
  221. if data and data.valid == true then
  222. status.Text = "✅ Access granted! Loading script..."
  223. verifyBtn.Text = "UNLOCKED"
  224. verifyBtn.BackgroundColor3 = Color3.fromRGB(0, 200, 100)
  225.  
  226. ts:Create(card, TweenInfo.new(0.4, Enum.EasingStyle.Back, Enum.EasingDirection.In), {
  227. Position = UDim2.new(0.5, -240, 0.5, 400),
  228. BackgroundTransparency = 1
  229. }):Play()
  230. ts:Create(bg, TweenInfo.new(0.3), {BackgroundTransparency = 1}):Play()
  231.  
  232. task.wait(0.5)
  233. gui:Destroy()
  234.  
  235. local scriptContent = httpGet(SCRIPT_URL)
  236. if scriptContent then
  237. local func, err = loadstring(scriptContent)
  238. if func then
  239. func()
  240. else
  241. warn("Błąd w pobranym skrypcie: " .. tostring(err))
  242. end
  243. else
  244. warn("Nie udało się pobrać skryptu z GitHuba")
  245. end
  246. else
  247. status.Text = "❌ Invalid or expired token"
  248. verifyBtn.Interactable = true
  249. verifyBtn.Text = "VERIFY & UNLOCK"
  250. end
  251. end)
  252.  
  253.  
  254. print("🔐 PRISMA HUB KEY 24H – DZIAŁA!")
  255. print(" Script URL: " .. SCRIPT_URL)
RAW Paste Data Copied