unkristan

dsfasdfsad

Dec 24th, 2024
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.45 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "Kristans Hub",
  5. Icon = 0,
  6. LoadingTitle = "All Cool Scripts 😎 -by kristan :3",
  7. LoadingSubtitle = "by Kristan",
  8. Theme = "nil",
  9. DisableRayfieldPrompts = false,
  10. DisableBuildWarnings = false,
  11. ConfigurationSaving = {
  12. Enabled = true,
  13. FolderName = nil,
  14. FileName = "Kristans Hub"
  15. },
  16. Discord = {
  17. Enabled = true,
  18. Invite = "cazware",
  19. RememberJoins = true
  20. },
  21. KeySystem = true,
  22. KeySettings = {
  23. Title = "In Beta-Test",
  24. Subtitle = "Key (will become removed soon)",
  25. Note = "key - https://discord.gg/XNQxmZRZhj",
  26. FileName = "Fire GUI",
  27. SaveKey = false,
  28. GrabKeyFromSite = false,
  29. Key = {"kristancheater"}
  30. }
  31. })
  32.  
  33. local MainTab = Window:CreateTab("MainπŸ€–", 4483362458)
  34. local MainSection = MainTab:CreateSection("Main")
  35.  
  36. -- Infinite Jump Button
  37. local Button = MainTab:CreateButton({
  38. Name = "Infinite Jump",
  39. Callback = function()
  40. pcall(function()
  41. local InfiniteJumpEnabled = true
  42. game:GetService("UserInputService").JumpRequest:Connect(function()
  43. if InfiniteJumpEnabled then
  44. game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass('Humanoid'):ChangeState("Jumping")
  45. end
  46. end)
  47. end)
  48. end,
  49. })
  50.  
  51. -- Walkspeed Slider
  52. local Slider = MainTab:CreateSlider({
  53. Name = "Walkspeed Slider",
  54. Range = {0, 500},
  55. Increment = 1,
  56. Suffix = "Speed",
  57. CurrentValue = 16,
  58. Flag = "Slider1",
  59. Callback = function(Value)
  60. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
  61. end,
  62. })
  63.  
  64. -- Jumppower Slider
  65. local Slider = MainTab:CreateSlider({
  66. Name = "Jumppower Slider",
  67. Range = {0, 5000},
  68. Increment = 1,
  69. Suffix = "Jump",
  70. CurrentValue = 50,
  71. Flag = "Slider1",
  72. Callback = function(Value)
  73. game.Players.LocalPlayer.Character.Humanoid.JumpPower = (Value)
  74. end,
  75. })
  76.  
  77. -- Button Example 1
  78. local Button = MainTab:CreateButton({
  79. Name = "Jerk Off Tool (R6 ONLY)",
  80. Callback = function()
  81. pcall(function()
  82. loadstring(game:HttpGet("https://pastefy.app/wa3v2Vgm/raw"))("Spider Script")
  83. end)
  84. end,
  85. })
  86.  
  87. -- Button Example 2
  88. local Button = MainTab:CreateButton({
  89. Name = "Infinite Yield 🀀",
  90. Callback = function()
  91. pcall(function()
  92. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  93. end)
  94. end,
  95. })
  96.  
  97. -- Button Example 3
  98. local Button = MainTab:CreateButton({
  99. Name = "Freaky animations πŸ‘… (R6)",
  100. Callback = function()
  101. pcall(function()
  102. loadstring(game:HttpGet("https://raw.githubusercontent.com/BingusWR/ggggggggggg/refs/heads/main/ggggggggg"))()
  103. end)
  104. end,
  105. })
  106.  
  107. -- Button Example 4
  108. local Button = MainTab:CreateButton({
  109. Name = "Sigma Bypasser πŸ—Ώ",
  110. Callback = function()
  111. pcall(function()
  112. loadstring(game:HttpGet('https://raw.githubusercontent.com/shakk-code/SigmaBypasser/refs/heads/main/source', true))()
  113. end)
  114. end,
  115. })
  116.  
  117. -- Sus Dance Button
  118. local Button = MainTab:CreateButton({
  119. Name = "Sus Dance πŸ’ƒ",
  120. Callback = function()
  121. pcall(function()
  122. for _, animTrack in pairs(game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()) do
  123. animTrack:Stop()
  124. end
  125. local dance = Instance.new("Animation")
  126. dance.AnimationId = "rbxassetid://3189777795"
  127. local animTrack = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(dance)
  128. animTrack:Play()
  129. end)
  130. end,
  131. })
  132.  
  133. -- Glitchy Walk Button
  134. local Button = MainTab:CreateButton({
  135. Name = "Glitchy Walk 🩻",
  136. Callback = function()
  137. pcall(function()
  138. local player = game.Players.LocalPlayer
  139. local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
  140. humanoid.WalkSpeed = 25
  141. game:GetService("RunService").RenderStepped:Connect(function()
  142. player.Character:SetPrimaryPartCFrame(player.Character.PrimaryPart.CFrame * CFrame.Angles(0, math.rad(10), 0))
  143. end)
  144. end)
  145. end,
  146. })
  147.  
  148. -- Exploding Jumps Button
  149. local Button = MainTab:CreateButton({
  150. Name = "Exploding Jumps πŸ’₯",
  151. Callback = function()
  152. pcall(function()
  153. local player = game.Players.LocalPlayer
  154. local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
  155. humanoid.Jumping:Connect(function()
  156. local explosion = Instance.new("Explosion")
  157. explosion.Position = player.Character.PrimaryPart.Position
  158. explosion.BlastRadius = 5
  159. explosion.BlastPressure = 50000
  160. explosion.Parent = workspace
  161. end)
  162. end)
  163. end,
  164. })
  165.  
  166. -- FE Gun Button
  167. local Button = MainTab:CreateButton({
  168. Name = "FE Gun πŸ”«",
  169. Callback = function()
  170. pcall(function()
  171. local tool = Instance.new("Tool")
  172. tool.Name = "FE Gun"
  173. tool.RequiresHandle = true
  174. tool.Parent = game.Players.LocalPlayer.Backpack
  175.  
  176. local handle = Instance.new("Part")
  177. handle.Name = "Handle"
  178. handle.Size = Vector3.new(1, 5, 1)
  179. handle.Anchored = false
  180. handle.CanCollide = false
  181. handle.BrickColor = BrickColor.new("Bright red")
  182. handle.Parent = tool
  183.  
  184. tool.Activated:Connect(function()
  185. local bullet = Instance.new("Part")
  186. bullet.Size = Vector3.new(1, 1, 5)
  187. bullet.Shape = Enum.PartType.Ball
  188. bullet.Position = game.Players.LocalPlayer.Character.Head.Position
  189. bullet.BrickColor = BrickColor.new("Bright yellow")
  190. bullet.Anchored = false
  191. bullet.CanCollide = true
  192. bullet.Parent = workspace
  193.  
  194. local bodyVelocity = Instance.new("BodyVelocity")
  195. bodyVelocity.MaxForce = Vector3.new(10000, 10000, 10000)
  196. bodyVelocity.Velocity = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.LookVector * 100
  197. bodyVelocity.Parent = bullet
  198. end)
  199. end)
  200. end,
  201. })
  202.  
  203. -- Walk on Walls Button
  204. local Button = MainTab:CreateButton({
  205. Name = "Walk on Walls 🧱",
  206. Callback = function()
  207. pcall(function()
  208. loadstring(game:HttpGet("https://raw.githubusercontent.com/randomstring0/Qwerty/refs/heads/main/qwerty21.lua"))()
  209. end)
  210. end,
  211. })
  212.  
  213. -- Size Shrink/Grow Button
  214. local Button = MainTab:CreateButton({
  215. Name = "Size Shrink/Grow πŸ‘Ύ",
  216. Callback = function()
  217. pcall(function()
  218. local humanoid = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  219. local scale = 1
  220. task.spawn(function()
  221. while true do
  222. for i = 1, 10 do
  223. scale = scale + 0.1
  224. humanoid.BodyDepthScale.Value = scale
  225. humanoid.BodyWidthScale.Value = scale
  226. humanoid.BodyHeightScale.Value = scale
  227. humanoid.HeadScale.Value = scale
  228. task.wait(0.1)
  229. end
  230. for i = 1, 10 do
  231. scale = scale - 0.1
  232. humanoid.BodyDepthScale.Value = scale
  233. humanoid.BodyWidthScale.Value = scale
  234. humanoid.BodyHeightScale.Value = scale
  235. humanoid.HeadScale.Value = scale
  236. task.wait(0.1)
  237. end
  238. end
  239. end)
  240. end)
  241. end,
  242. })
  243.  
  244. -- Invisible Cloak Button
  245. local Button = MainTab:CreateButton({
  246. Name = "Invisible Cloak πŸ‘»",
  247. Callback = function()
  248. pcall(function()
  249. for _, part in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  250. if part:IsA("BasePart") then
  251. part.Transparency = 1
  252. end
  253. end
  254. end)
  255. end,
  256. })
  257.  
  258. -- Misc Tab (Discord Link and Thanks Button)
  259. local MiscTab = Window:CreateTab("Misc 🀒", 4483362458)
  260. local MiscSection = MiscTab:CreateSection("Misc 🀒")
  261.  
  262. local Button = MiscTab:CreateButton({
  263. Name = "Our Discord --> https://discord.gg/XNQxmZRZhj",
  264. Callback = function()
  265. end,
  266. })
  267.  
  268. local Button = MiscTab:CreateButton({
  269. Name = "Creator --> unkristan (on discord)",
  270. Callback = function()
  271. end,
  272. })
  273.  
  274. local Button = MiscTab:CreateButton({
  275. Name = "Thats it, thanks for using 🀫😁",
  276. Callback = function()
  277. end,
  278. })
Add Comment
Please, Sign In to add comment