Advertisement
Guest User

SEXY WITH ME SCRIPT

a guest
Jun 18th, 2021
778
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local Farm = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  14.  
  15. Frame.Parent = ScreenGui
  16. Frame.BackgroundColor3 = Color3.fromRGB(25, 255, 255)
  17. Frame.Position = UDim2.new(0.283072591, 0, 0.31904763, 0)
  18. Frame.Size = UDim2.new(0, 268, 0, 162)
  19.  
  20. TextLabel.Parent = Frame
  21. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  22. TextLabel.Size = UDim2.new(0, 268, 0, 34)
  23. TextLabel.Font = Enum.Font.SourceSans
  24. TextLabel.Text = "BY LAWRENCEMASTERKING EXECUTE IT YOUR GAY"
  25. TextLabel.TextColor3 = Color3.fromRGB(255, 25, 255)
  26. TextLabel.TextSize = 14.000
  27.  
  28. Farm.Name = "Farm"
  29. Farm.Parent = Frame
  30. Farm.BackgroundColor3 = Color3.fromRGB(255,255, 255)
  31. Farm.Position = UDim2.new(0.0522388071, 0, 0.379660189, 0)
  32. Farm.Size = UDim2.new(0, 240, 0, 55)
  33. Farm.Font = Enum.Font.SourceSans
  34. Farm.Text = "LIFT SEXY DOUBLE WEIGHT"
  35. Farm.TextColor3 = Color3.fromRGB(255, 5, 255)
  36. Farm.TextScaled = true
  37. Farm.TextSize = 14.000
  38. Farm.TextWrapped = true
  39.  
  40. -- stuff:
  41.  
  42. local function BVWZUH_fake_script() -- ScreenGui.Script
  43. local script = Instance.new('Script', ScreenGui)
  44.  
  45. frame = script.Parent.Frame --Name of your frame
  46. frame.Draggable = true
  47. frame.Active = true
  48. frame.Selectable = true
  49. end
  50. coroutine.wrap(BVWZUH_fake_script)()
  51. -- open/close:
  52. Plr = game.Players.LocalPlayer
  53.  
  54. Plr:GetMouse().KeyDown:Connect(function(K)
  55. if K == "l" then
  56. if Frame.Visible == true then
  57. Frame:TweenPosition(UDim2.new(0.019, 0,0.279, 0), -- // When Input remove the "{" and "}" From the thing.
  58. "Out", -- // Doesnt Matter
  59. "Linear",-- // Doesnt Matter
  60. 0.5, -- // How many seconds the animation will play for
  61. true --// Animation works or not I think...
  62. )
  63. wait(.5)
  64. Frame.Visible = false
  65. else
  66. Frame:TweenPosition(UDim2.new(0.319, 0,0.279, 0), -- // When Input remove the "{" and "}" From the thing.
  67. "Out", -- // Doesnt Matter
  68. "Linear",-- // Doesnt Matter
  69. 0.5, -- // How many seconds the animation will play for
  70. true --// Animation works or not I think...
  71. )
  72. Frame.Visible = true
  73. end
  74. end
  75. end)
  76.  
  77. -- script:
  78. local plr = game.Players.LocalPlayer
  79. local char = plr.Character
  80. local mouse = plr:GetMouse()
  81.  
  82. local debounce = false
  83. local farming = nil
  84.  
  85. function StartFarm()
  86. farming = true
  87. Farm.BackgroundColor3 = Color3.fromRGB(255,255,255)
  88. while farming == true do
  89. wait(0.6)
  90. for i,v in pairs(char:GetChildren()) do
  91. if v.Name == "Double Weight" then
  92. v:Activate()
  93. else
  94. for i,v in pairs(plr.Backpack:GetChildren()) do
  95. if v.Name == "Double Weight" then
  96. v.Parent = plr.Character
  97. end
  98. end
  99. end
  100. end
  101. end
  102. end
  103.  
  104. function StopFarm()
  105. Farm.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  106. farming = false
  107. end
  108.  
  109. Farm.MouseButton1Click:Connect(function()
  110. if debounce == false then
  111. debounce = true
  112. StartFarm()
  113. else
  114. debounce = false
  115. StopFarm()
  116. end
  117. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement