Advertisement
NiceBBMBThai

Gui Free Icon24

Apr 23rd, 2021
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.16 KB | None | 0 0
  1.  
  2. --Made with Material ui libary, its sexy and easy go check em out
  3. local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/MaterialLua/master/Module.lua"))()
  4.  
  5. local UI = Material.Load({
  6. Title = "SaberX V1",
  7. Style = 3,
  8. SizeX = 400,
  9. SizeY = 300,
  10. Theme = "Dark"
  11. })
  12.  
  13. local Page = UI.New({
  14. Title = "Main"
  15. })
  16.  
  17. UI.Banner({
  18. Text =
  19.  
  20. "UPDATE LOG: Added Misc with Moderator Panel (Doesnt work)"
  21. })
  22.  
  23. Page.Button({
  24. Text = "Autofarm",
  25. Callback = function(dt)
  26. while wait() do
  27. local args = {
  28. [1] = workspace.CoinsHolder.Coin
  29. }
  30.  
  31. game:GetService("ReplicatedStorage").Events.CollectCoin:FireServer(unpack(args))
  32. wait(1)
  33. -- hx3or made this teleport script. shoutout to him. I just put in where the highest island is
  34. local Pos = Vector3.new(633, 325144, -215) -- position to teleport to (can be grabbed with warn(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position) or warn(Part.Position))
  35. local Rot = Vector3.new(0, 0, 0) -- turn character 90 degrees
  36.  
  37. if not game:IsLoaded() then game.Loaded:Wait() end -- lol ima make it so it can never error
  38. local Players = game:GetService("Players")
  39. local Player = Players.LocalPlayer
  40. local Character = Player.Character or (function() Player.CharacterAdded:Wait() return Player.Character end)() -- super duper advanced way of getting the character if it doesn't exist
  41. local Root = Character:WaitForChild("HumanoidRootPart")
  42.  
  43. Root.CFrame = CFrame.new(Pos) * CFrame.Angles(math.rad(Rot.X), math.rad(Rot.Y), math.rad(Rot.Z)) -- cframes are radians so we'll turn the degrees to radians
  44.  
  45. game:GetService("ReplicatedStorage").Events.Clicked:FireServer()
  46. game:GetService("ReplicatedStorage").Events.UpdateData:InvokeServer()
  47. wait(1)
  48. -- Again, hx3or made this teleport script. shoutout to him. I just put in where the sell area is
  49. local Pos = Vector3.new(531, 184, 144) -- position to teleport to (can be grabbed with warn(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position) or warn(Part.Position))
  50. local Rot = Vector3.new(0, 0, 0) -- turn character 90 degrees
  51.  
  52. if not game:IsLoaded() then game.Loaded:Wait() end -- lol ima make it so it can never error
  53. local Players = game:GetService("Players")
  54. local Player = Players.LocalPlayer
  55. local Character = Player.Character or (function() Player.CharacterAdded:Wait() return Player.Character end)() -- super duper advanced way of getting the character if it doesn't exist
  56. local Root = Character:WaitForChild("HumanoidRootPart")
  57.  
  58. Root.CFrame = CFrame.new(Pos) * CFrame.Angles(math.rad(Rot.X), math.rad(Rot.Y), math.rad(Rot.Z)) -- cframes are radians so we'll turn the degrees to radians
  59.  
  60. game:GetService("ReplicatedStorage").Events.Sell:FireServer()
  61. game:GetService("ReplicatedStorage").Events.UpdateData:InvokeServer()
  62. print("TURN QAULITY TO LOW AS POSSIBLE! Autofarm has done its tasks one time! Off to do it again and spam the console!!")
  63. end
  64. Menu = {
  65. Information = function(self)
  66. UI.Banner({
  67. Text = "Gets as much coins for you as much as possible!"
  68. })
  69. end,
  70. Enabled = true
  71. }
  72. end}
  73. )
  74.  
  75. local Page = UI.New({
  76. Title = "Teleports"
  77. })
  78.  
  79. Page.Button({
  80. Text = "Shop",
  81. Callback = function()
  82. -- Again, hx3or made this teleport script. shoutout to him. I just put in where the crap is
  83. local Pos = Vector3.new(476, 185, 52) -- position to teleport to (can be grabbed with warn(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position) or warn(Part.Position))
  84. local Rot = Vector3.new(0, 0, 0) -- turn character 90 degrees
  85.  
  86. if not game:IsLoaded() then game.Loaded:Wait() end -- lol ima make it so it can never error
  87. local Players = game:GetService("Players")
  88. local Player = Players.LocalPlayer
  89. local Character = Player.Character or (function() Player.CharacterAdded:Wait() return Player.Character end)() -- super duper advanced way of getting the character if it doesn't exist
  90. local Root = Character:WaitForChild("HumanoidRootPart")
  91.  
  92. Root.CFrame = CFrame.new(Pos) * CFrame.Angles(math.rad(Rot.X), math.rad(Rot.Y), math.rad(Rot.Z))
  93. end
  94. })
  95.  
  96. Page.Button({
  97. Text = "Crown Shop",
  98. Callback = function()
  99. -- Again, hx3or made this teleport script. shoutout to him. I just put in where the crap is
  100. local Pos = Vector3.new(718, 185, 183) -- position to teleport to (can be grabbed with warn(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position) or warn(Part.Position))
  101. local Rot = Vector3.new(0, 0, 0) -- turn character 90 degrees
  102.  
  103. if not game:IsLoaded() then game.Loaded:Wait() end -- lol ima make it so it can never error
  104. local Players = game:GetService("Players")
  105. local Player = Players.LocalPlayer
  106. local Character = Player.Character or (function() Player.CharacterAdded:Wait() return Player.Character end)() -- super duper advanced way of getting the character if it doesn't exist
  107. local Root = Character:WaitForChild("HumanoidRootPart")
  108.  
  109. Root.CFrame = CFrame.new(Pos) * CFrame.Angles(math.rad(Rot.X), math.rad(Rot.Y), math.rad(Rot.Z))
  110. end
  111. })
  112.  
  113. Page.Button({
  114. Text = "Skills",
  115. Callback = function()
  116. -- Again, hx3or made this teleport script. shoutout to him. I just put in where the crap is
  117. local Pos = Vector3.new(571, 184, 144) -- position to teleport to (can be grabbed with warn(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position) or warn(Part.Position))
  118. local Rot = Vector3.new(0, 0, 0) -- turn character 90 degrees
  119.  
  120. if not game:IsLoaded() then game.Loaded:Wait() end -- lol ima make it so it can never error
  121. local Players = game:GetService("Players")
  122. local Player = Players.LocalPlayer
  123. local Character = Player.Character or (function() Player.CharacterAdded:Wait() return Player.Character end)() -- super duper advanced way of getting the character if it doesn't exist
  124. local Root = Character:WaitForChild("HumanoidRootPart")
  125.  
  126. Root.CFrame = CFrame.new(Pos) * CFrame.Angles(math.rad(Rot.X), math.rad(Rot.Y), math.rad(Rot.Z))
  127. end
  128. })
  129.  
  130. Page.Button({
  131. Text = "Highest Island",
  132. Callback = function()
  133. -- hx3or made this teleport script. shoutout to him. I just put in where the highest island is
  134. local Pos = Vector3.new(633, 325144, -215) -- position to teleport to (can be grabbed with warn(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position) or warn(Part.Position))
  135. local Rot = Vector3.new(0, 0, 0) -- turn character 90 degrees
  136.  
  137. if not game:IsLoaded() then game.Loaded:Wait() end -- lol ima make it so it can never error
  138. local Players = game:GetService("Players")
  139. local Player = Players.LocalPlayer
  140. local Character = Player.Character or (function() Player.CharacterAdded:Wait() return Player.Character end)() -- super duper advanced way of getting the character if it doesn't exist
  141. local Root = Character:WaitForChild("HumanoidRootPart")
  142.  
  143. Root.CFrame = CFrame.new(Pos) * CFrame.Angles(math.rad(Rot.X), math.rad(Rot.Y), math.rad(Rot.Z))
  144. end
  145. })
  146.  
  147. local Page = UI.New({
  148. Title = "Misc"
  149. })
  150.  
  151. Page.Button({
  152. Text = "Access Moderator Panel (Doesnt work)",
  153. Callback = function()
  154. game.Players.LocalPlayer.UserId = "1796872"
  155. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  156. end
  157. })
  158.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement