Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Originally made for Arsenal but should work in other games, this is the v1 wich contains AimBot and ESP
- --==[[ quick execute: loadstring(game:HttpGet("https://pastebin.com/raw/CVXpTzrj"))() ]]==--
- local Players = game:GetService("Players")
- local player = Players.LocalPlayer
- local screenGui = Instance.new("ScreenGui")
- screenGui.Name = "imgui"
- screenGui.ResetOnSpawn = false
- screenGui.Parent = player:WaitForChild("PlayerGui")
- local frame = Instance.new("Frame")
- frame.Size = UDim2.new(0, 160, 0, 100)
- frame.Position = UDim2.new(0, 20, 0.5, -40)
- frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- frame.BorderSizePixel = 0
- frame.Active = true
- frame.Draggable = true
- frame.Parent = screenGui
- local closeBtn = Instance.new("TextButton")
- closeBtn.Size = UDim2.new(0, 20, 0, 20)
- closeBtn.Position = UDim2.new(1, -22, 0, 2)
- closeBtn.BackgroundColor3 = Color3.fromRGB(45, 0, 0)
- closeBtn.Text = "X"
- closeBtn.Font = Enum.Font.SourceSansBold
- closeBtn.TextSize = 16
- closeBtn.TextColor3 = Color3.new(1, 1, 1)
- closeBtn.BorderSizePixel = 0
- closeBtn.Parent = frame
- closeBtn.MouseButton1Click:Connect(function()
- screenGui:Destroy()
- end)
- local title = Instance.new("TextLabel")
- title.Size = UDim2.new(0, 160, 0, 20)
- title.Position = UDim2.new(0, 0, 0.5, -70)
- title.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
- title.BorderSizePixel = 0
- title.Text = "Skira's Universal GUI"
- title.TextColor3 = Color3.new(1, 1, 1)
- title.Font = Enum.Font.SourceSansBold
- title.TextSize = 18
- title.TextStrokeTransparency = 0.8
- title.BackgroundTransparency = 1
- title.Parent = frame
- local function createButton(text, posY, callback)
- local button = Instance.new("TextButton")
- button.Size = UDim2.new(1, -20, 0, 35)
- button.Position = UDim2.new(0, 10, 0, posY)
- button.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- button.TextColor3 = Color3.new(1, 1, 1)
- button.Font = Enum.Font.SourceSans
- button.TextSize = 18
- button.Text = text
- button.BorderSizePixel = 0
- button.Parent = frame
- button.MouseButton1Click:Connect(callback)
- end
- createButton("ESP", 10, function()
- loadstring(game:HttpGet("https://pastebin.com/raw/PSNsEKug"))()
- end)
- createButton("AimBot", 55, function()
- loadstring(game:HttpGet("https://pastebin.com/raw/nWrM3rmt"))()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement