Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local TextButton = Instance.new("TextButton")
- local UICorner = Instance.new("UICorner")
- local UICorner_2 = Instance.new("UICorner")
- local TextButton_2 = Instance.new("TextButton")
- local UICorner_3 = Instance.new("UICorner")
- local TextButton_3 = Instance.new("TextButton")
- local UICorner_4 = Instance.new("UICorner")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(53, 53, 53)
- Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Frame.BorderSizePixel = 0
- Frame.Position = UDim2.new(0.0891621858, 0, 0.140322581, 0)
- Frame.Size = UDim2.new(0, 258, 0, 290)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(53, 53, 53)
- TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.BorderSizePixel = 0
- TextLabel.Position = UDim2.new(0.104651161, 0, 0.896551728, 0)
- TextLabel.Size = UDim2.new(0, 204, 0, 20)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "Tool Stealer Made by OC Glichter"
- TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextWrapped = true
- TextButton.Parent = Frame
- TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.BorderSizePixel = 0
- TextButton.Position = UDim2.new(0.104651161, 0, 0.131034479, 0)
- TextButton.Size = UDim2.new(0, 204, 0, 66)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.Text = "Save Tool"
- TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.TextSize = 14.000
- UICorner.Parent = TextButton
- UICorner_2.Parent = Frame
- TextButton_2.Parent = Frame
- TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextButton_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextButton_2.BorderSizePixel = 0
- TextButton_2.Position = UDim2.new(0.104651161, 0, 0.462068975, 0)
- TextButton_2.Size = UDim2.new(0, 204, 0, 66)
- TextButton_2.Font = Enum.Font.SourceSans
- TextButton_2.Text = "Load Tool"
- TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton_2.TextSize = 14.000
- UICorner_3.Parent = TextButton_2
- TextButton_3.Parent = Frame
- TextButton_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextButton_3.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextButton_3.BorderSizePixel = 0
- TextButton_3.Position = UDim2.new(0.643410861, 0, 0.806896567, 0)
- TextButton_3.Size = UDim2.new(0, 78, 0, 26)
- TextButton_3.Font = Enum.Font.SourceSans
- TextButton_3.Text = "Help (check console)"
- TextButton_3.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton_3.TextScaled = true
- TextButton_3.TextSize = 14.000
- TextButton_3.TextWrapped = true
- UICorner_4.Parent = TextButton_3
- -- Scripts:
- local function QXSOOLJ_fake_script() -- TextButton.LocalScript
- local script = Instance.new('LocalScript', TextButton)
- local function OnClick()
- for i,v in pairs(game.Players:GetPlayers()) do
- for _, gear in pairs(game.Workspace.Obbies[v.Name].Items.Parts:GetChildren()) do
- if gear.Name == "Gear Part" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = gear.CFrame * CFrame.new(0, 2, 0)
- end
- wait(0.5)
- end
- end
- end
- local button = script.Parent
- button.MouseButton1Click:Connect(OnClick)
- end
- coroutine.wrap(QXSOOLJ_fake_script)()
- local function IVNJHTZ_fake_script() -- TextButton_2.LocalScript
- local script = Instance.new('LocalScript', TextButton_2)
- game:GetService("ReplicatedStorage").Events.TouchedPartToHandle:FireServer()
- local function OnClick()
- for i,v in pairs(game.Players:GetPlayers()) do
- for _, gear in pairs(game.Workspace.Obbies[v.Name].Items.Parts:GetChildren()) do
- if gear.Name == "Gear Part" then
- local args = {
- [1] = {
- [1] = {
- [1] = gear[1],
- [2] = "Gear Parts"
- },
- [2] = {
- [1] = gear[2],
- [2] = "Gear Parts"
- },
- [3] = {
- [1] = gear[3],
- [2] = "Gear Parts"
- }
- }
- }
- game:GetService("ReplicatedStorage").Events.TouchedPartToHandle:FireServer(unpack(args))
- end
- end
- end
- end
- local button = script.Parent
- button.MouseButton1Click:Connect(OnClick)
- end
- coroutine.wrap(IVNJHTZ_fake_script)()
- local function LGHYD_fake_script() -- Frame.LocalScript
- local script = Instance.new('LocalScript', Frame)
- local UserInputService = game:GetService("UserInputService")
- local gui = script.Parent
- local dragging
- local dragInput
- local dragStart
- local startPos
- local function update(input)
- local delta = input.Position - dragStart
- gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
- end
- gui.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
- dragging = true
- dragStart = input.Position
- startPos = gui.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then
- dragging = false
- end
- end)
- end
- end)
- gui.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
- dragInput = input
- end
- end)
- UserInputService.InputChanged:Connect(function(input)
- if input == dragInput and dragging then
- update(input)
- end
- end)
- end
- coroutine.wrap(LGHYD_fake_script)()
- local function KEGM_fake_script() -- TextButton_3.LocalScript
- local script = Instance.new('LocalScript', TextButton_3)
- local function OnClick()
- print("Click 'Save Tool' and After Click Load Tool")
- end
- local button = script.Parent
- button.MouseButton1Click:Connect(OnClick)
- end
- coroutine.wrap(KEGM_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement