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 Farm = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(25, 255, 255)
- Frame.Position = UDim2.new(0.283072591, 0, 0.31904763, 0)
- Frame.Size = UDim2.new(0, 268, 0, 162)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.Size = UDim2.new(0, 268, 0, 34)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "BY LAWRENCEMASTERKING EXECUTE IT YOUR GAY"
- TextLabel.TextColor3 = Color3.fromRGB(255, 25, 255)
- TextLabel.TextSize = 14.000
- Farm.Name = "Farm"
- Farm.Parent = Frame
- Farm.BackgroundColor3 = Color3.fromRGB(255,255, 255)
- Farm.Position = UDim2.new(0.0522388071, 0, 0.379660189, 0)
- Farm.Size = UDim2.new(0, 240, 0, 55)
- Farm.Font = Enum.Font.SourceSans
- Farm.Text = "LIFT SEXY DOUBLE WEIGHT"
- Farm.TextColor3 = Color3.fromRGB(255, 5, 255)
- Farm.TextScaled = true
- Farm.TextSize = 14.000
- Farm.TextWrapped = true
- -- stuff:
- local function BVWZUH_fake_script() -- ScreenGui.Script
- local script = Instance.new('Script', ScreenGui)
- frame = script.Parent.Frame --Name of your frame
- frame.Draggable = true
- frame.Active = true
- frame.Selectable = true
- end
- coroutine.wrap(BVWZUH_fake_script)()
- -- open/close:
- Plr = game.Players.LocalPlayer
- Plr:GetMouse().KeyDown:Connect(function(K)
- if K == "l" then
- if Frame.Visible == true then
- Frame:TweenPosition(UDim2.new(0.019, 0,0.279, 0), -- // When Input remove the "{" and "}" From the thing.
- "Out", -- // Doesnt Matter
- "Linear",-- // Doesnt Matter
- 0.5, -- // How many seconds the animation will play for
- true --// Animation works or not I think...
- )
- wait(.5)
- Frame.Visible = false
- else
- Frame:TweenPosition(UDim2.new(0.319, 0,0.279, 0), -- // When Input remove the "{" and "}" From the thing.
- "Out", -- // Doesnt Matter
- "Linear",-- // Doesnt Matter
- 0.5, -- // How many seconds the animation will play for
- true --// Animation works or not I think...
- )
- Frame.Visible = true
- end
- end
- end)
- -- script:
- local plr = game.Players.LocalPlayer
- local char = plr.Character
- local mouse = plr:GetMouse()
- local debounce = false
- local farming = nil
- function StartFarm()
- farming = true
- Farm.BackgroundColor3 = Color3.fromRGB(255,255,255)
- while farming == true do
- wait(0.6)
- for i,v in pairs(char:GetChildren()) do
- if v.Name == "Double Weight" then
- v:Activate()
- else
- for i,v in pairs(plr.Backpack:GetChildren()) do
- if v.Name == "Double Weight" then
- v.Parent = plr.Character
- end
- end
- end
- end
- end
- end
- function StopFarm()
- Farm.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- farming = false
- end
- Farm.MouseButton1Click:Connect(function()
- if debounce == false then
- debounce = true
- StartFarm()
- else
- debounce = false
- StopFarm()
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement