Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local char = player.Character or player.CharacterAdded:Wait()
- local hum = char:FindFirstChild("Humanoid")
- local root = char:FindFirstChild("HumanoidRootPart")
- local infJump = false
- local buttonText = "Auto Farm: Off"
- local button3
- local function sendLinkToChat()
- local message = "https://t.me/RaptorcfScript"
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(message, "All")
- end
- local function toggleInfJump()
- infJump = not infJump
- buttonText = "Auto Farm: " .. (infJump and "On" or "Off")
- if button3 then
- button3.Text = buttonText
- end
- end
- local function jumpLoop()
- while true do
- if infJump and root then
- root.Velocity = Vector3.new(root.Velocity.X, 100, root.Velocity.Z)
- end
- wait()
- end
- end
- local function textColorLoop(textLabel)
- local red = Color3.new(1, 0, 0)
- local black = Color3.new(0, 0, 0)
- local t = 0
- while true do
- t = t + 0.01
- local currentColor = black:Lerp(red, math.abs(math.sin(t)))
- textLabel.TextColor3 = currentColor
- wait(0.01)
- end
- end
- local function rainbowLoop(frame)
- while true do
- for i = 0, 1, 0.01 do
- local rainbowColor = Color3.fromHSV(i, 1, 1)
- frame.BackgroundColor3 = rainbowColor
- wait(0.01)
- end
- end
- end
- local function menu()
- local scr = Instance.new("ScreenGui")
- scr.Name = "The Floor is Lava By Raptorcf"
- scr.Parent = player.PlayerGui
- local frame = Instance.new("Frame")
- frame.Size = UDim2.new(0, 200, 0, 100)
- frame.Position = UDim2.new(0, 5, 0, 10)
- frame.BackgroundColor3 = Color3.new(0.7, 0.7, 0.7)
- frame.Parent = scr
- local title = Instance.new("TextLabel")
- title.Size = UDim2.new(1, 0, 0.3, 0)
- title.Position = UDim2.new(0, 0, 0, 0)
- title.BackgroundColor3 = Color3.new(0, 0, 0)
- title.BackgroundTransparency = 0
- title.Text = "The Floor is Lava By Raptorcf"
- title.TextColor3 = Color3.new(1, 1, 1)
- title.TextScaled = true
- title.Parent = frame
- spawn(function()
- textColorLoop(title)
- end)
- button3 = Instance.new("TextButton")
- button3.Size = UDim2.new(0.48, 0, 0.35, 0)
- button3.Position = UDim2.new(0, 0, 0.3, 0)
- button3.Text = buttonText
- button3.BackgroundColor3 = Color3.new(1, 1, 1)
- button3.TextColor3 = Color3.new(0, 0, 0)
- button3.Parent = frame
- button3.MouseButton1Click:Connect(toggleInfJump)
- spawn(function()
- rainbowLoop(button3)
- end)
- local button4 = Instance.new("TextButton")
- button4.Size = UDim2.new(0.48, 0, 0.35, 0)
- button4.Position = UDim2.new(0.52, 0, 0.3, 0)
- button4.Text = "Join Community"
- button4.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
- button4.TextColor3 = Color3.new(1, 1, 1)
- button4.Parent = frame
- button4.MouseButton1Click:Connect(function()
- setclipboard("https://t.me/RaptorcfScript")
- end)
- if hum and root then
- spawn(jumpLoop)
- end
- end
- local function onCharacterAdded(character)
- char = character
- hum = char:FindFirstChild("Humanoid")
- root = char:FindFirstChild("HumanoidRootPart")
- if hum and root then
- spawn(jumpLoop)
- end
- end
- menu()
- player.CharacterAdded:Connect(onCharacterAdded)
- sendLinkToChat()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement