Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- Omega 1.0 Script injector by 28nard ;)
- Please do not change the following code as this script might not if done so. Only change if you are an intermediate scripter.-
- ]]
- --- functions ---
- local udim = function(p1,p2,p3,p4)
- return UDim2.new(p1,p2,p3,p4)
- end
- local color3 = function(p1,p2,p3)
- return Color3.new(p1,p2,p3)
- end
- ------------- Declarations ---------------
- local me = game.Players.LocalPlayer
- local localgui = me:WaitForChild("PlayerGui")
- local gui = Instance.new("ScreenGui",localgui)
- local frame = Instance.new("Frame",gui)
- frame.Size = udim(0.282,0,0.354,0)
- frame.Position = udim(-0.0001,0,0.002,0)
- frame.Style = "RobloxRound"
- local scriptData = Instance.new("TextBox",frame)
- scriptData.TextScaled = true
- scriptData.BackgroundTransparency = 1
- scriptData.TextColor3 = color3(255,255,255)
- scriptData.Position = udim(0.149,0,0.212,0)
- scriptData.Size = udim(0,200,0,50)
- scriptData.Text = "Press this to enter a script."
- local button = Instance.new("TextButton",frame)
- button.Style = "RobloxRoundButton"
- button.Position = udim(0.261,0,0.781,0)
- button.Size = udim(0.465,0,0.127,0)
- button.Text = "Execute Script"
- button.MouseButton1Click:connect(function()
- local data = scriptData.Text
- local code = loadstring(data)
- code()
- end)
- --------------------------------------------
Add Comment
Please, Sign In to add comment