Advertisement
SK1R4_script

Skira's Universal GUI

Jun 12th, 2025 (edited)
731
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.24 KB | Gaming | 0 0
  1. -- Originally made for Arsenal but should work in other games, this is the v1 wich contains AimBot and ESP
  2.  
  3. --==[[ quick execute: loadstring(game:HttpGet("https://pastebin.com/raw/CVXpTzrj"))() ]]==--
  4.  
  5. local Players = game:GetService("Players")
  6. local player = Players.LocalPlayer
  7.  
  8. local screenGui = Instance.new("ScreenGui")
  9. screenGui.Name = "imgui"
  10. screenGui.ResetOnSpawn = false
  11. screenGui.Parent = player:WaitForChild("PlayerGui")
  12.  
  13. local frame = Instance.new("Frame")
  14. frame.Size = UDim2.new(0, 160, 0, 100)
  15. frame.Position = UDim2.new(0, 20, 0.5, -40)
  16. frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  17. frame.BorderSizePixel = 0
  18. frame.Active = true
  19. frame.Draggable = true
  20. frame.Parent = screenGui
  21.  
  22. local closeBtn = Instance.new("TextButton")
  23. closeBtn.Size = UDim2.new(0, 20, 0, 20)
  24. closeBtn.Position = UDim2.new(1, -22, 0, 2)
  25. closeBtn.BackgroundColor3 = Color3.fromRGB(45, 0, 0)
  26. closeBtn.Text = "X"
  27. closeBtn.Font = Enum.Font.SourceSansBold
  28. closeBtn.TextSize = 16
  29. closeBtn.TextColor3 = Color3.new(1, 1, 1)
  30. closeBtn.BorderSizePixel = 0
  31. closeBtn.Parent = frame
  32.  
  33. closeBtn.MouseButton1Click:Connect(function()
  34.     screenGui:Destroy()
  35. end)
  36.  
  37. local title = Instance.new("TextLabel")
  38. title.Size = UDim2.new(0, 160, 0, 20)
  39. title.Position = UDim2.new(0, 0, 0.5, -70)
  40. title.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  41. title.BorderSizePixel = 0
  42. title.Text = "Skira's Universal GUI"
  43. title.TextColor3 = Color3.new(1, 1, 1)
  44. title.Font = Enum.Font.SourceSansBold
  45. title.TextSize = 18
  46. title.TextStrokeTransparency = 0.8
  47. title.BackgroundTransparency = 1
  48. title.Parent = frame
  49.  
  50. local function createButton(text, posY, callback)
  51.     local button = Instance.new("TextButton")
  52.     button.Size = UDim2.new(1, -20, 0, 35)
  53.     button.Position = UDim2.new(0, 10, 0, posY)
  54.     button.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  55.     button.TextColor3 = Color3.new(1, 1, 1)
  56.     button.Font = Enum.Font.SourceSans
  57.     button.TextSize = 18
  58.     button.Text = text
  59.     button.BorderSizePixel = 0
  60.     button.Parent = frame
  61.  
  62.     button.MouseButton1Click:Connect(callback)
  63. end
  64.  
  65. createButton("ESP", 10, function()
  66.     loadstring(game:HttpGet("https://pastebin.com/raw/PSNsEKug"))()
  67. end)
  68.  
  69. createButton("AimBot", 55, function()
  70.     loadstring(game:HttpGet("https://pastebin.com/raw/nWrM3rmt"))()
  71. end)
  72.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement