MatLumber2

Skyblock

May 8th, 2020
1,058
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local main = Instance.new("Frame")
  8. local Titulo = Instance.new("TextLabel")
  9. local ModoDios = Instance.new("TextButton")
  10. local Tps = Instance.new("TextButton")
  11. local OtraGUI = Instance.new("TextButton")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16.  
  17. main.Name = "main"
  18. main.Parent = ScreenGui
  19. main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  20. main.Position = UDim2.new(0, 0, 0.770307958, 0)
  21. main.Size = UDim2.new(0, 190, 0, 134)
  22.  
  23. Titulo.Name = "Titulo"
  24. Titulo.Parent = main
  25. Titulo.BackgroundColor3 = Color3.fromRGB(0, 255, 29)
  26. Titulo.Position = UDim2.new(0, 0, -0.158273309, 0)
  27. Titulo.Size = UDim2.new(0, 190, 0, 22)
  28. Titulo.Font = Enum.Font.GothamBold
  29. Titulo.Text = "Suscribete a MatLumber"
  30. Titulo.TextColor3 = Color3.fromRGB(0, 0, 0)
  31. Titulo.TextSize = 14.000
  32.  
  33. ModoDios.Name = "ModoDios"
  34. ModoDios.Parent = main
  35. ModoDios.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  36. ModoDios.Position = UDim2.new(0.0572680756, 0, 0.0529976003, 0)
  37. ModoDios.Size = UDim2.new(0, 171, 0, 35)
  38. ModoDios.Font = Enum.Font.GothamBold
  39. ModoDios.Text = "Modo dios"
  40. ModoDios.TextColor3 = Color3.fromRGB(0, 0, 0)
  41. ModoDios.TextSize = 14.000
  42.  
  43. Tps.Name = "Tps"
  44. Tps.Parent = main
  45. Tps.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  46. Tps.Position = UDim2.new(0.0572680756, 0, 0.364143342, 0)
  47. Tps.Size = UDim2.new(0, 171, 0, 35)
  48. Tps.Font = Enum.Font.GothamBold
  49. Tps.Text = "Tp a slime zone"
  50. Tps.TextColor3 = Color3.fromRGB(0, 0, 0)
  51. Tps.TextSize = 14.000
  52.  
  53. OtraGUI.Name = "Otra GUI"
  54. OtraGUI.Parent = main
  55. OtraGUI.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  56. OtraGUI.Position = UDim2.new(0.294110149, 0, 0.680660963, 0)
  57. OtraGUI.Size = UDim2.new(0, 77, 0, 35)
  58. OtraGUI.Font = Enum.Font.GothamBold
  59. OtraGUI.Text = "Otra gui"
  60. OtraGUI.TextColor3 = Color3.fromRGB(0, 0, 0)
  61. OtraGUI.TextSize = 14.000
  62.  
  63.  
  64. --Scripts
  65.  
  66. ModoDios.MouseButton1Click:connect(function()
  67. game:GetService("Players").LocalPlayer.Character.CurrentHealth:Destroy()
  68. end)
  69.  
  70. Tps.MouseButton1Click:connect(function()
  71. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(690.871338, 195.310654, -222.634995)
  72. end)
  73.  
  74. OtraGUI.MouseButton1Click:connect(function()
  75. loadstring(game:HttpGet('https://pastebin.com/raw/mAbLu73x', true))()
  76. end)
Add Comment
Please, Sign In to add comment