fuckoffwhatever

Untitled

Nov 15th, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local NormalGui = Instance.new("ScreenGui")
  7. local MotherFrame = Instance.new("Frame")
  8. local WelcomeSign = Instance.new("TextLabel")
  9. local TPFruit = Instance.new("TextButton")
  10. local GodMode = Instance.new("TextButton")
  11. local AutoAttack = Instance.new("TextButton")
  12. local Bleach = Instance.new("TextLabel")
  13. local Closing = Instance.new("TextButton")
  14.  
  15. --Properties:
  16.  
  17. NormalGui.Name = "NormalGui"
  18. NormalGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. NormalGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. MotherFrame.Name = "MotherFrame"
  22. MotherFrame.Parent = NormalGui
  23. MotherFrame.Active = true
  24. MotherFrame.BackgroundColor3 = Color3.new(0.737255, 0.917647, 1)
  25. MotherFrame.Position = UDim2.new(0.00917430874, 0, 0.090116255, 0)
  26. MotherFrame.Size = UDim2.new(0, 505, 0, 206)
  27. MotherFrame.Style = Enum.FrameStyle.DropShadow
  28. MotherFrame.Draggable = true
  29.  
  30. WelcomeSign.Name = "WelcomeSign"
  31. WelcomeSign.Parent = MotherFrame
  32. WelcomeSign.BackgroundColor3 = Color3.new(0.654902, 0.898039, 1)
  33. WelcomeSign.Position = UDim2.new(-0.00372255128, 0, -0.0429352671, 0)
  34. WelcomeSign.Size = UDim2.new(0, 450, 0, 50)
  35. WelcomeSign.Font = Enum.Font.SourceSansBold
  36. WelcomeSign.Text = "Welcome To Fuck Roblox One Piece Games"
  37. WelcomeSign.TextColor3 = Color3.new(0, 0, 0)
  38. WelcomeSign.TextSize = 18
  39.  
  40. TPFruit.Name = "TPFruit"
  41. TPFruit.Parent = MotherFrame
  42. TPFruit.BackgroundColor3 = Color3.new(0.458824, 1, 0.882353)
  43. TPFruit.Position = UDim2.new(-0.00431965431, 0, 0.252427191, 0)
  44. TPFruit.Size = UDim2.new(0, 200, 0, 50)
  45. TPFruit.Font = Enum.Font.SourceSansBold
  46. TPFruit.Text = "TP Fruit In This Damn Game"
  47. TPFruit.TextColor3 = Color3.new(0, 0, 0)
  48. TPFruit.TextSize = 18
  49. TPFruit.MouseButton1Click:connect(function()
  50. print("xD")
  51. while wait(0.01) do
  52. for i,v in pairs(game.Workspace:GetChildren()) do
  53. if v:IsA('Tool') then
  54. print("Here take it mother fucker")
  55. v:FindFirstChild('Handle').CFrame = game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame
  56. end
  57. end
  58. end
  59. end)
  60.  
  61. GodMode.Name = "GodMode"
  62. GodMode.Parent = MotherFrame
  63. GodMode.BackgroundColor3 = Color3.new(0.501961, 1, 1)
  64. GodMode.Position = UDim2.new(-0.00431965431, 0, 0.553398073, 0)
  65. GodMode.Size = UDim2.new(0, 200, 0, 50)
  66. GodMode.Font = Enum.Font.SourceSansBold
  67. GodMode.Text = "Fucking Take God Mode"
  68. GodMode.TextColor3 = Color3.new(0, 0, 0)
  69. GodMode.TextSize = 18
  70. GodMode.MouseButton1Click:connect(function()
  71. while true do
  72. wait()
  73. game.ReplicatedStorage.RemoteEvents.BlockingRemote:FireServer(true)
  74. end
  75. end)
  76.  
  77. AutoAttack.Name = "AutoAttack"
  78. AutoAttack.Parent = MotherFrame
  79. AutoAttack.BackgroundColor3 = Color3.new(0.537255, 1, 0.784314)
  80. AutoAttack.Position = UDim2.new(0.490392715, 0, 0.251107603, 0)
  81. AutoAttack.Size = UDim2.new(0, 206, 0, 50)
  82. AutoAttack.Font = Enum.Font.SourceSansBold
  83. AutoAttack.Text = "Fucking Take Auto Attack Nigga"
  84. AutoAttack.TextColor3 = Color3.new(0, 0, 0)
  85. AutoAttack.TextSize = 18
  86. AutoAttack.MouseButton1Click:connect(function()
  87. while true do
  88. wait()
  89. game.ReplicatedStorage.RemoteEvents.PunchRemote:FireServer(false)
  90. end
  91. end)
  92.  
  93. Bleach.Name = "Bleach"
  94. Bleach.Parent = MotherFrame
  95. Bleach.BackgroundColor3 = Color3.new(0.619608, 1, 0.968628)
  96. Bleach.Position = UDim2.new(0.48853144, 0, 0.549250722, 0)
  97. Bleach.Size = UDim2.new(0, 207, 0, 50)
  98. Bleach.Font = Enum.Font.SourceSansBold
  99. Bleach.Text = "Drink Bleach"
  100. Bleach.TextColor3 = Color3.new(0, 0, 0)
  101. Bleach.TextSize = 18
  102.  
  103. Closing.Name = "Closing"
  104. Closing.Parent = MotherFrame
  105. Closing.BackgroundColor3 = Color3.new(1, 0.8, 0.737255)
  106. Closing.Position = UDim2.new(0.916207433, 0, -0.044454854, 0)
  107. Closing.Size = UDim2.new(0, 50, 0, 50)
  108. Closing.Font = Enum.Font.SourceSans
  109. Closing.Text = "X"
  110. Closing.TextColor3 = Color3.new(0, 0, 0)
  111. Closing.TextSize = 18
  112. Closing.MouseButton1Click:connect(function()
  113. MotherFrame.Visible = false
  114. end)
Add Comment
Please, Sign In to add comment