Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Instances:
- local Converted = {
- ["_ScreenGui"] = Instance.new("ScreenGui");
- ["_Main gui"] = Instance.new("Frame");
- ["_LocalScript"] = Instance.new("LocalScript");
- ["_Main script"] = Instance.new("Frame");
- ["_Button Main tab"] = Instance.new("TextButton");
- ["_TextButton"] = Instance.new("TextButton");
- ["_LocalScript1"] = Instance.new("LocalScript");
- ["_EQ Hub - Game?"] = Instance.new("TextLabel");
- }
- -- Properties:
- Converted["_ScreenGui"].Parent = game:GetService("CoreGui")
- Converted["_Main gui"].BackgroundColor3 = Color3.fromRGB(44.000001177191734, 44.000001177191734, 44.000001177191734)
- Converted["_Main gui"].BackgroundTransparency = 0.30000001192092896
- Converted["_Main gui"].BorderColor3 = Color3.fromRGB(0, 0, 0)
- Converted["_Main gui"].BorderSizePixel = 0
- Converted["_Main gui"].Position = UDim2.new(0.227795199, 0, 0.276925057, 0)
- Converted["_Main gui"].Size = UDim2.new(0, 570, 0, 272)
- Converted["_Main gui"].Name = "Main gui"
- Converted["_Main gui"].Parent = Converted["_ScreenGui"]
- Converted["_Main script"].BackgroundColor3 = Color3.fromRGB(52.000000700354576, 52.000000700354576, 52.000000700354576)
- Converted["_Main script"].BorderColor3 = Color3.fromRGB(0, 0, 0)
- Converted["_Main script"].BorderSizePixel = 0
- Converted["_Main script"].Position = UDim2.new(0.204894692, 0, 0.0755431205, 0)
- Converted["_Main script"].Size = UDim2.new(0, 434, 0, 230)
- Converted["_Main script"].Name = "Main script"
- Converted["_Main script"].Parent = Converted["_Main gui"]
- Converted["_Button Main tab"].Font = Enum.Font.SourceSans
- Converted["_Button Main tab"].Text = "Main"
- Converted["_Button Main tab"].TextColor3 = Color3.fromRGB(0, 0, 0)
- Converted["_Button Main tab"].TextSize = 14
- Converted["_Button Main tab"].BackgroundColor3 = Color3.fromRGB(100.00000923871994, 100.00000923871994, 100.00000923871994)
- Converted["_Button Main tab"].BorderColor3 = Color3.fromRGB(0, 0, 0)
- Converted["_Button Main tab"].BorderSizePixel = 0
- Converted["_Button Main tab"].Position = UDim2.new(0.031930916, 0, 0.0755431205, 0)
- Converted["_Button Main tab"].Size = UDim2.new(0, 82, 0, 33)
- Converted["_Button Main tab"].Name = "Button Main tab"
- Converted["_Button Main tab"].Parent = Converted["_Main gui"]
- Converted["_TextButton"].Font = Enum.Font.SourceSans
- Converted["_TextButton"].TextColor3 = Color3.fromRGB(0, 0, 0)
- Converted["_TextButton"].TextSize = 14
- Converted["_TextButton"].BackgroundColor3 = Color3.fromRGB(127.00000762939453, 127.00000762939453, 127.00000762939453)
- Converted["_TextButton"].BorderColor3 = Color3.fromRGB(0, 0, 0)
- Converted["_TextButton"].BorderSizePixel = 0
- Converted["_TextButton"].Position = UDim2.new(0.217280656, 0, 0.30394116, 0)
- Converted["_TextButton"].Size = UDim2.new(0, 133, 0, 33)
- Converted["_TextButton"].Parent = Converted["_Main gui"]
- Converted["_EQ Hub - Game?"].Font = Enum.Font.SourceSans
- Converted["_EQ Hub - Game?"].Text = "Eq Hub - Game name"
- Converted["_EQ Hub - Game?"].TextColor3 = Color3.fromRGB(0, 0, 0)
- Converted["_EQ Hub - Game?"].TextSize = 14
- Converted["_EQ Hub - Game?"].BackgroundColor3 = Color3.fromRGB(106.00000888109207, 106.00000888109207, 106.00000888109207)
- Converted["_EQ Hub - Game?"].BorderColor3 = Color3.fromRGB(0, 0, 0)
- Converted["_EQ Hub - Game?"].BorderSizePixel = 0
- Converted["_EQ Hub - Game?"].Position = UDim2.new(0.204999954, 0, 0.072323516, 0)
- Converted["_EQ Hub - Game?"].Size = UDim2.new(0, 433, 0, 50)
- Converted["_EQ Hub - Game?"].Name = "EQ Hub - Game?"
- Converted["_EQ Hub - Game?"].Parent = Converted["_Main gui"]
- -- Fake Module Scripts:
- local fake_module_scripts = {}
- -- Fake Local Scripts:
- local function KYCMDH_fake_script() -- Fake Script: StarterGui.ScreenGui.Main gui.LocalScript
- local script = Instance.new("LocalScript")
- script.Name = "LocalScript"
- script.Parent = Converted["_Main gui"]
- local req = require
- local require = function(obj)
- local fake = fake_module_scripts[obj]
- if fake then
- return fake()
- end
- return req(obj)
- end
- local UIS = game:GetService('UserInputService')
- local frame = script.Parent
- local dragToggle = nil
- local dragSpeed = 0.25
- local dragStart = nil
- local starPos = nil
- local function updateInput(input)
- local delta = input.Position - dragStart
- local position = UDim2.new(starPos.X.Scale, starPos.X.Offset + delta.X, starPos.Y.Scale, starPos.Y.Offset + delta.Y)
- game:GetService('TweenService'):Create(frame, TweenInfo.new(dragSpeed), {Position = position}) :Play()
- end
- frame.InputBegan:Connect(function(input)
- if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then
- dragToggle = true
- dragStart = input.Position
- starPos = frame.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then
- dragToggle = false
- end
- end)
- end
- end)
- UIS.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
- if dragToggle then
- updateInput (input)
- end
- end
- end)
- end
- local function PYVSVVN_fake_script() -- Fake Script: StarterGui.ScreenGui.Main gui.TextButton.LocalScript
- local script = Instance.new("LocalScript")
- script.Name = "LocalScript"
- script.Parent = Converted["_TextButton"]
- local req = require
- local require = function(obj)
- local fake = fake_module_scripts[obj]
- if fake then
- return fake()
- end
- return req(obj)
- end
- script.Parent.MouseButton1Up:Connect(function()
- print("Hello")
- end)
- end
- coroutine.wrap(KYCMDH_fake_script)()
- coroutine.wrap(PYVSVVN_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement