koreanhackerman

Adopt Me GUI ( Money and noclip , etc. )

Nov 30th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.01 KB | None | 0 0
  1. -- cREDITS to lauu for script
  2. -- Objects
  3.  
  4. local lau = Instance.new("ScreenGui")
  5. local ui = Instance.new("Frame")
  6. local button1 = Instance.new("TextButton")
  7. local button2 = Instance.new("TextButton")
  8.  
  9. -- Properties
  10.  
  11. lau.Name = "lau"
  12. lau.Parent = game.CoreGui
  13.  
  14. ui.Name = "ui"
  15. ui.Parent = lau
  16. ui.BackgroundColor3 = Color3.new(1, 1, 1)
  17. ui.BackgroundTransparency = 0.5
  18. ui.BorderSizePixel = 5
  19. ui.Active = true
  20. ui.Draggable = true
  21. ui.Position = UDim2.new(0.196167886, 0, 0.166666672, 0)
  22. ui.Size = UDim2.new(0, 234, 0, 87)
  23.  
  24. button1.Name = "button1"
  25. button1.Parent = ui
  26. button1.BackgroundColor3 = Color3.new(1, 1, 1)
  27. button1.BackgroundTransparency = 0.5
  28. button1.BorderSizePixel = 3
  29. button1.Position = UDim2.new(0.0920082182, 0, 0.28637448, 0)
  30. button1.Size = UDim2.new(0, 72, 0, 42)
  31. button1.Font = Enum.Font.SourceSansBold
  32. button1.FontSize = Enum.FontSize.Size14
  33. button1.Text = "Press me first !"
  34. button1.TextSize = 13
  35. button1.TextStrokeTransparency = 500
  36.  
  37. button2.Name = "button2"
  38. button2.Parent = ui
  39. button2.BackgroundColor3 = Color3.new(1, 1, 1)
  40. button2.BackgroundTransparency = 0.5
  41. button2.BorderSizePixel = 3
  42. button2.Position = UDim2.new(0.602468431, 0, 0.28637448, 0)
  43. button2.Size = UDim2.new(0, 72, 0, 42)
  44. button2.Font = Enum.Font.SourceSansBold
  45. button2.FontSize = Enum.FontSize.Size14
  46. button2.Text = "Noclip"
  47. button2.TextSize = 13
  48. button2.TextStrokeTransparency = 500
  49.  
  50. button1.MouseButton1Click:connect(function()
  51.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-539, 18, -1388) + Vector3.new(1,0,0)
  52. end)
  53. button2.MouseButton1Click:connect(function()
  54.     noclip = false
  55. game:GetService('RunService').Stepped:connect(function()
  56. if noclip then
  57. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  58. end
  59. end)
  60. plr = game.Players.LocalPlayer
  61. mouse = plr:GetMouse()
  62. mouse.KeyDown:connect(function(key)
  63.  
  64. if key == "x" then
  65. noclip = not noclip
  66. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  67. end
  68. end)
  69. print('NoClip Loaded')
  70. print('Press "X" to noclip')
  71. end)
Add Comment
Please, Sign In to add comment