Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local GUI = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextButton = Instance.new("TextButton")
- -- Properties
- GUI.Parent = game.CoreGui
- GUI.Name = "LOLMYGUIISBETTERTHANALL" --must have these four lines (may rename to things such as screen gui, etc)
- GUI.Enabled = true
- GUI.ResetOnSpawn = false
- Frame.Parent = GUI
- Frame.BackgroundColor3 = Color3.new(1, 1, 1)
- Frame.Position = UDim2.new(0.375820041, 0, 0.305084735, 0)
- Frame.Size = UDim2.new(0, 231, 0, 143)
- TextButton.Parent = Frame
- TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
- TextButton.Position = UDim2.new(0.0670995638, 0, 0.325174838)
- TextButton.Size = UDim2.new(0, 200, 0, 50)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.Text = "Grab Knife V4"
- TextButton.TextSize = 14
- TextButton.MouseButton1Click:connect(function() --name of button goes where textbutton is
- loadstring(game:HttpGet("https://pastebin.com/raw/xAtpvaZT",true)) --script here
- end) --end
Advertisement
Add Comment
Please, Sign In to add comment