Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
- local Window = Rayfield:CreateWindow({
- Name = "Kristans Hub",
- Icon = 0,
- LoadingTitle = "All Cool Scripts π -by kristan :3",
- LoadingSubtitle = "by Kristan",
- Theme = "nil",
- DisableRayfieldPrompts = false,
- DisableBuildWarnings = false,
- ConfigurationSaving = {
- Enabled = true,
- FolderName = nil,
- FileName = "Kristans Hub"
- },
- Discord = {
- Enabled = true,
- Invite = "cazware",
- RememberJoins = true
- },
- KeySystem = true,
- KeySettings = {
- Title = "In Beta-Test",
- Subtitle = "Key (will become removed soon)",
- Note = "key - https://discord.gg/XNQxmZRZhj",
- FileName = "Fire GUI",
- SaveKey = false,
- GrabKeyFromSite = false,
- Key = {"kristancheater"}
- }
- })
- local MainTab = Window:CreateTab("Mainπ€", 4483362458)
- local MainSection = MainTab:CreateSection("Main")
- -- Infinite Jump Button
- local Button = MainTab:CreateButton({
- Name = "Infinite Jump",
- Callback = function()
- pcall(function()
- local InfiniteJumpEnabled = true
- game:GetService("UserInputService").JumpRequest:Connect(function()
- if InfiniteJumpEnabled then
- game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass('Humanoid'):ChangeState("Jumping")
- end
- end)
- end)
- end,
- })
- -- Walkspeed Slider
- local Slider = MainTab:CreateSlider({
- Name = "Walkspeed Slider",
- Range = {0, 500},
- Increment = 1,
- Suffix = "Speed",
- CurrentValue = 16,
- Flag = "Slider1",
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
- end,
- })
- -- Jumppower Slider
- local Slider = MainTab:CreateSlider({
- Name = "Jumppower Slider",
- Range = {0, 5000},
- Increment = 1,
- Suffix = "Jump",
- CurrentValue = 50,
- Flag = "Slider1",
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = (Value)
- end,
- })
- -- Button Example 1
- local Button = MainTab:CreateButton({
- Name = "Jerk Off Tool (R6 ONLY)",
- Callback = function()
- pcall(function()
- loadstring(game:HttpGet("https://pastefy.app/wa3v2Vgm/raw"))("Spider Script")
- end)
- end,
- })
- -- Button Example 2
- local Button = MainTab:CreateButton({
- Name = "Infinite Yield π€€",
- Callback = function()
- pcall(function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end)
- end,
- })
- -- Button Example 3
- local Button = MainTab:CreateButton({
- Name = "Freaky animations π (R6)",
- Callback = function()
- pcall(function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/BingusWR/ggggggggggg/refs/heads/main/ggggggggg"))()
- end)
- end,
- })
- -- Button Example 4
- local Button = MainTab:CreateButton({
- Name = "Sigma Bypasser πΏ",
- Callback = function()
- pcall(function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/shakk-code/SigmaBypasser/refs/heads/main/source', true))()
- end)
- end,
- })
- -- Sus Dance Button
- local Button = MainTab:CreateButton({
- Name = "Sus Dance π",
- Callback = function()
- pcall(function()
- for _, animTrack in pairs(game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()) do
- animTrack:Stop()
- end
- local dance = Instance.new("Animation")
- dance.AnimationId = "rbxassetid://3189777795"
- local animTrack = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(dance)
- animTrack:Play()
- end)
- end,
- })
- -- Glitchy Walk Button
- local Button = MainTab:CreateButton({
- Name = "Glitchy Walk π©»",
- Callback = function()
- pcall(function()
- local player = game.Players.LocalPlayer
- local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
- humanoid.WalkSpeed = 25
- game:GetService("RunService").RenderStepped:Connect(function()
- player.Character:SetPrimaryPartCFrame(player.Character.PrimaryPart.CFrame * CFrame.Angles(0, math.rad(10), 0))
- end)
- end)
- end,
- })
- -- Exploding Jumps Button
- local Button = MainTab:CreateButton({
- Name = "Exploding Jumps π₯",
- Callback = function()
- pcall(function()
- local player = game.Players.LocalPlayer
- local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
- humanoid.Jumping:Connect(function()
- local explosion = Instance.new("Explosion")
- explosion.Position = player.Character.PrimaryPart.Position
- explosion.BlastRadius = 5
- explosion.BlastPressure = 50000
- explosion.Parent = workspace
- end)
- end)
- end,
- })
- -- FE Gun Button
- local Button = MainTab:CreateButton({
- Name = "FE Gun π«",
- Callback = function()
- pcall(function()
- local tool = Instance.new("Tool")
- tool.Name = "FE Gun"
- tool.RequiresHandle = true
- tool.Parent = game.Players.LocalPlayer.Backpack
- local handle = Instance.new("Part")
- handle.Name = "Handle"
- handle.Size = Vector3.new(1, 5, 1)
- handle.Anchored = false
- handle.CanCollide = false
- handle.BrickColor = BrickColor.new("Bright red")
- handle.Parent = tool
- tool.Activated:Connect(function()
- local bullet = Instance.new("Part")
- bullet.Size = Vector3.new(1, 1, 5)
- bullet.Shape = Enum.PartType.Ball
- bullet.Position = game.Players.LocalPlayer.Character.Head.Position
- bullet.BrickColor = BrickColor.new("Bright yellow")
- bullet.Anchored = false
- bullet.CanCollide = true
- bullet.Parent = workspace
- local bodyVelocity = Instance.new("BodyVelocity")
- bodyVelocity.MaxForce = Vector3.new(10000, 10000, 10000)
- bodyVelocity.Velocity = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.LookVector * 100
- bodyVelocity.Parent = bullet
- end)
- end)
- end,
- })
- -- Walk on Walls Button
- local Button = MainTab:CreateButton({
- Name = "Walk on Walls π§±",
- Callback = function()
- pcall(function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/randomstring0/Qwerty/refs/heads/main/qwerty21.lua"))()
- end)
- end,
- })
- -- Size Shrink/Grow Button
- local Button = MainTab:CreateButton({
- Name = "Size Shrink/Grow πΎ",
- Callback = function()
- pcall(function()
- local humanoid = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
- local scale = 1
- task.spawn(function()
- while true do
- for i = 1, 10 do
- scale = scale + 0.1
- humanoid.BodyDepthScale.Value = scale
- humanoid.BodyWidthScale.Value = scale
- humanoid.BodyHeightScale.Value = scale
- humanoid.HeadScale.Value = scale
- task.wait(0.1)
- end
- for i = 1, 10 do
- scale = scale - 0.1
- humanoid.BodyDepthScale.Value = scale
- humanoid.BodyWidthScale.Value = scale
- humanoid.BodyHeightScale.Value = scale
- humanoid.HeadScale.Value = scale
- task.wait(0.1)
- end
- end
- end)
- end)
- end,
- })
- -- Invisible Cloak Button
- local Button = MainTab:CreateButton({
- Name = "Invisible Cloak π»",
- Callback = function()
- pcall(function()
- for _, part in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
- if part:IsA("BasePart") then
- part.Transparency = 1
- end
- end
- end)
- end,
- })
- -- Misc Tab (Discord Link and Thanks Button)
- local MiscTab = Window:CreateTab("Misc π€’", 4483362458)
- local MiscSection = MiscTab:CreateSection("Misc π€’")
- local Button = MiscTab:CreateButton({
- Name = "Our Discord --> https://discord.gg/XNQxmZRZhj",
- Callback = function()
- end,
- })
- local Button = MiscTab:CreateButton({
- Name = "Creator --> unkristan (on discord)",
- Callback = function()
- end,
- })
- local Button = MiscTab:CreateButton({
- Name = "Thats it, thanks for using π€«π",
- Callback = function()
- end,
- })
Add Comment
Please, Sign In to add comment