Advertisement
Prokri43

Xyzah free v1

Aug 10th, 2024 (edited)
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.77 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local Reset = Instance.new("TextButton")
  4. local Kill = Instance.new("TextButton")
  5. local house = Instance.new("TextButton")
  6. local btools = Instance.new("TextButton")
  7. local TextLabel = Instance.new("TextLabel")
  8. local close = Instance.new("TextButton")
  9. local title = Instance.new("TextLabel")
  10. local tphouse = Instance.new("TextButton")
  11. local tppad = Instance.new("TextButton")
  12. local Arrow = Instance.new("TextButton")
  13. local Page2 = Instance.new("Frame")
  14. local Arrow2 = Instance.new("TextButton")
  15. local close2 = Instance.new("TextButton")
  16. local RemoteEvent = Instance.new("RemoteEvent")
  17. local Title = Instance.new("TextLabel")
  18. local Title2 = Instance.new("TextLabel")
  19. local anti = Instance.new("TextButton")
  20. local Enabled = true
  21.  
  22.  
  23.  
  24. --Properties:
  25.  
  26. ScreenGui.Parent = game.CoreGui
  27.  
  28.  
  29. main.Name = "Main"
  30. main.Parent = ScreenGui
  31. main.BackgroundColor3 = Color3.fromRGB(230, 30, 130)
  32. main.Position = UDim2.new(0.335372061, 0, 0.194484755, 0)
  33. main.Size = UDim2.new(0, 147,0, 260)
  34. main.Active = true
  35. main.Draggable = true
  36.  
  37. Title.Name = "Title"
  38. Title.Parent = main
  39. Title.Size = UDim2.new(0, 137,0, 33)
  40. Title.Text = "XyzWare Free"
  41. Title.TextScaled = true
  42. Title.Font = Enum.Font.Arcade
  43. Title.Position = UDim2.new(0.068, 0,0, 0)
  44. Title.BackgroundTransparency = 1
  45. Title.TextColor3 = Color3.fromRGB(120,0,200)
  46.  
  47.  
  48. Page2.Name = "Page2"
  49. Page2.Parent = ScreenGui
  50. Page2.BackgroundColor3 = Color3.fromRGB(230, 30, 130)
  51. Page2.Position = UDim2.new(0.335372061, 0, 0.194484755, 0)
  52. Page2.Size = UDim2.new(0, 147,0, 260)
  53. Page2.Active = true
  54. Page2.Draggable = true
  55. Page2.Visible = false
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64. btools.Name = "Btools"
  65. btools.Parent = Page2
  66. btools.Size = UDim2.new(0, 130,0, 49)
  67. btools.Text = "F3X"
  68. btools.TextScaled = true
  69. btools.Font = Enum.Font.SourceSans
  70. btools.Position = UDim2.new(0.054, 0,0.213, 0)
  71. btools.BackgroundColor3 = Color3.fromRGB(255,255,255)
  72. btools.MouseButton1Click:Connect(function()
  73. game:GetService("Players"):Chat(":F3X")
  74. end)
  75. Kill.Name = "Kill"
  76. Kill.Parent = main
  77. Kill.Size = UDim2.new(0, 130,0, 50)
  78. Kill.Text = "Free Perm"
  79. Kill.TextScaled = true
  80. Kill.Font = Enum.Font.SourceSans
  81. Kill.Position = UDim2.new(0.054, 0,0.571, 0)
  82. Kill.BackgroundColor3 = Color3.fromRGB(255,255,255)
  83. Kill.MouseButton1Click:Connect(function()
  84. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  85. game.Players:Chat(":npm me LOL TROLL")
  86. end)
  87.  
  88. anti.Name = "Anti-Crash"
  89. anti.Parent = Page2
  90. anti.Size = UDim2.new(0, 130,0, 49)
  91. anti.Text = "Anti-Crash(ON/OFF)"
  92. anti.TextScaled = true
  93. anti.Font = Enum.Font.SourceSans
  94. anti.Position = UDim2.new(0.054, 0,0.405, 0)
  95. anti.BackgroundColor3 = Color3.fromRGB(255,255,255)
  96. anti.MouseButton1Click:Connect(function()
  97.  
  98. if Enabled == true then
  99.  
  100. game:GetService("RunService"):Set3dRenderingEnabled(false)
  101. Enabled = false
  102.  
  103. else
  104.  
  105. game:GetService("RunService"):Set3dRenderingEnabled(true)
  106. Enabled = true
  107. end
  108. end)
  109.  
  110. Title2.Name = "Title"
  111. Title2.Parent = Page2
  112. Title2.Size = UDim2.new(0, 130,0, 50)
  113. Title2.Text = "XyzWare Free"
  114. Title2.TextScaled = true
  115. Title2.Font = Enum.Font.Arcade
  116. Title2.Position = UDim2.new(0.113, 0,0, 0)
  117. Title2.BackgroundTransparency = 1
  118. Title2.TextColor3 = Color3.fromRGB(120,0,205)
  119.  
  120.  
  121. close.Name = "Close"
  122. close.Parent = main
  123. close.Font = Enum.Font.SourceSans
  124. close.Position = UDim2.new(-0.118, 0,-0.066, 0)
  125. close.Size = UDim2.new(0, 34,0, 35)
  126. close.Text = "X"
  127. close.TextScaled = true
  128. close.BackgroundColor3 = Color3.new(255,0,0)
  129. close.MouseButton1Click:Connect(function()
  130. main.Visible = false
  131. end)
  132. close2.Name = "Close"
  133. close2.Parent = Page2
  134. close2.Font = Enum.Font.SourceSans
  135. close2.Position = UDim2.new(-0.118, 0,-0.066, 0)
  136. close2.Size = UDim2.new(0, 34,0, 35)
  137. close2.Text = "X"
  138. close2.TextScaled = true
  139. close2.BackgroundColor3 = Color3.new(255,0,0)
  140. close2.MouseButton1Click:Connect(function()
  141. Page2.Visible = false
  142.  
  143. end)
  144.  
  145. tphouse.Name = "TPhouse"
  146. tphouse.Parent = main
  147. tphouse.Size = UDim2.new(0, 130,0, 50)
  148. tphouse.Text = "TP house."
  149. tphouse.TextScaled = true
  150. tphouse.Font = Enum.Font.SourceSans
  151. tphouse.Position = UDim2.new(0.068, 0,0.353, 0)
  152. tphouse.BackgroundColor3 = Color3.fromRGB(255,255,255)
  153. tphouse.MouseButton1Click:Connect(function()
  154. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1,25.3,94.992)
  155. end)
  156.  
  157. tppad.Name = "TPpad"
  158. tppad.Parent = main
  159. tppad.Size = UDim2.new(0, 130,0, 50)
  160. tppad.Text = "TP Pad."
  161. tppad.TextScaled = true
  162. tppad.Font = Enum.Font.SourceSans
  163. tppad.Position = UDim2.new(0.054, 0,0.128, 0)
  164. tppad.BackgroundColor3 = Color3.fromRGB(255,255,255)
  165. tppad.MouseButton1Click:Connect(function()
  166. local x = 13.6
  167. local hrp = game.Players.LocalPlayer.Character.HumanoidRootPart
  168. local Pos = hrp.CFrame
  169. for i = 1, 9, 1 do
  170.  
  171. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(x, 28.3, 106.4)
  172. x = x - 4
  173. task.wait(0)
  174. end
  175. hrp.CFrame = Pos
  176. end)
  177.  
  178.  
  179. Arrow.Name = "NextPage"
  180. Arrow.Parent = main
  181. Arrow.Size = UDim2.new(0, 46,0, 34)
  182. Arrow.Text = "➡"
  183. Arrow.TextScaled = true
  184. Arrow.Font = Enum.Font.SourceSans
  185. Arrow.Position = UDim2.new(0.646, 0,0.81, 0)
  186. Arrow.Size = UDim2.new(0, 46,0, 34)
  187. Arrow.BackgroundColor3 = Color3.fromRGB(255,255,255)
  188. Arrow.MouseButton1Click:Connect(function()
  189.  
  190. main.Visible = false
  191. Page2.Visible = true
  192.  
  193.  
  194. end)
  195.  
  196. Arrow2.Name = "NextPage"
  197. Arrow2.Parent = Page2
  198. Arrow2.Size = UDim2.new(0, 46,0, 34)
  199. Arrow2.Text = "←"
  200. Arrow2.TextScaled = true
  201. Arrow2.Font = Enum.Font.SourceSans
  202. Arrow2.Position = UDim2.new(0.646, 0,0.81, 0)
  203. Arrow2.Size = UDim2.new(0, 46,0, 34)
  204. Arrow2.BackgroundColor3 = Color3.fromRGB(255,255,255)
  205. Arrow2.MouseButton1Click:Connect(function()
  206.  
  207. main.Visible = true
  208. Page2.Visible = false
  209.  
  210.  
  211. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement