Thank you for using our website
Your script:
local player = game.Players.LocalPlayer
local RunService = game:GetService("RunService")
local playerGui = player:WaitForChild("PlayerGui")
local screenGui = Instance.new("ScreenGui")
screenGui.Name = "NoClipAndRandomJumpRunGui"
screenGui.ResetOnSpawn = false
screenGui.Parent = playerGui
local frame = Instance.new("Frame", screenGui)
frame.Size = UDim2.new(0, 280, 0, 350) -- Anpassa höjd efter alla sektioner
frame.Position = UDim2.new(0.5, -140, 0.1, 0)
frame.BackgroundColor3 = Color3.fromRGB(40, 44, 52)
frame.BorderSizePixel = 0
frame.ClipsDescendants = true
frame.Active = true
frame.Draggable = true
frame.Name = "MainFrame"
frame.AnchorPoint = Vector2.new(0.5, 0)
local uicorner = Instance.new("UICorner", frame)
uicorner.CornerRadius = UDim.new(0, 12)
-- Marketing Swish label (längst upp)
local marketingLabel = Instance.new("TextLabel", frame)
marketingLabel.Size = UDim2.new(1, -20, 0, 24)
marketingLabel.Position = UDim2.new(0, 10, 0, 6)
marketingLabel.BackgroundTransparency = 1
marketingLabel.Text = "Marketing Swish"
marketingLabel.TextColor3 = Color3.fromRGB(180, 180, 180)
marketingLabel.Font = Enum.Font.GothamSemibold
marketingLabel.TextSize = 18
marketingLabel.TextXAlignment = Enum.TextXAlignment.Center
-- Titel Random Jump & Run
local titleLabel = Instance.new("TextLabel", frame)
titleLabel.Size = UDim2.new(1, -20, 0, 30)
titleLabel.Position = UDim2.new(0, 10, 0, 36)
titleLabel.BackgroundTransparency = 1
titleLabel.Text = "Random Jump & Run"
titleLabel.TextColor3 = Color3.fromRGB(220, 220, 220)
titleLabel.Font = Enum.Font.GothamBold
titleLabel.TextSize = 20
titleLabel.TextXAlignment = Enum.TextXAlignment.Left
local toggleButton = Instance.new("TextButton", frame)
toggleButton.Size = UDim2.new(1, -20, 0, 40)
toggleButton.Position = UDim2.new(0, 10, 0, 70)
toggleButton.BackgroundColor3 = Color3.fromRGB(72, 133, 237)
toggleButton.TextColor3 = Color3.new(1, 1, 1)
toggleButton.Font = Enum.Font.GothamSemibold
toggleButton.TextSize = 18
toggleButton.Text = "Start"
toggleButton.AutoButtonColor = true
-- Variabler för toggle & coroutines
local toggled = false
local jumpIntervalMin, jumpIntervalMax = 1, 3
local moveConnection
local jumpCoroutine
local walkCoroutine
-- Funktioner start/stop för jump & run
local function startRandomJumpRun()
if moveConnection or jumpCoroutine or walkCoroutine then return end
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")
local hrp = character:WaitForChild("HumanoidRootPart")
humanoid.WalkSpeed = 24
jumpCoroutine = coroutine.create(function()
while toggled do
if humanoid.FloorMaterial ~= Enum.Material.Air then
humanoid.Jump = true
end
local waitTime = math.random(jumpIntervalMin * 100, jumpIntervalMax * 100) / 100
wait(waitTime)
end
end)
coroutine.resume(jumpCoroutine)
walkCoroutine = coroutine.create(function()
while toggled do
for i = 1, 600 do -- Vänta 10 minuter (600 sek)
if not toggled then return end
wait(1)
end
local startTime = tick()
moveConnection = RunService.Heartbeat:Connect(function()
if not character or not character.Parent then return end
if not hrp then return end
local lookVector = hrp.CFrame.LookVector
humanoid:Move(lookVector, false)
end)
while tick() - startTime < 10 do -- Flytta i 10 sekunder
if not toggled then break end
wait(0.1)
end
if moveConnection then
moveConnection:Disconnect()
moveConnection = nil
end
end
end)
coroutine.resume(walkCoroutine)
end
local function stopRandomJumpRun()
if moveConnection then
moveConnection:Disconnect()
moveConnection = nil
end
jumpCoroutine = nil
walkCoroutine = nil
local character = player.Character
if character and character:FindFirstChild("Humanoid") then
local humanoid = character.Humanoid
humanoid.WalkSpeed = 16
humanoid.Jump = false
humanoid:Move(Vector3.new(0,0,0), false)
end
end
toggleButton.MouseButton1Click:Connect(function()
toggled = not toggled
if toggled then
toggleButton.Text = "Stop"
toggleButton.BackgroundColor3 = Color3.fromRGB(237, 72, 72)
startRandomJumpRun()
else
toggleButton.Text = "Start"
toggleButton.BackgroundColor3 = Color3.fromRGB(72, 133, 237)
stopRandomJumpRun()
end
end)
-- Discord länk sektion
local discordFrame = Instance.new("Frame", frame)
discordFrame.Size = UDim2.new(1, -20, 0, 35)
discordFrame.Position = UDim2.new(0, 10, 1, -50)
discordFrame.BackgroundColor3 = Color3.fromRGB(55, 59, 67)
discordFrame.BorderSizePixel = 0
discordFrame.AnchorPoint = Vector2.new(0, 0)
local discordLabel = Instance.new("TextLabel", discordFrame)
discordLabel.Size = UDim2.new(0.7, 0, 1, 0)
discordLabel.Position = UDim2.new(0, 10, 0, 0)
discordLabel.BackgroundTransparency = 1
discordLabel.Text = "Discord Server Link:"
discordLabel.TextColor3 = Color3.fromRGB(190, 190, 190)
discordLabel.Font = Enum.Font.Gotham
discordLabel.TextSize = 14
discordLabel.TextXAlignment = Enum.TextXAlignment.Left
local copyButton = Instance.new("TextButton", discordFrame)
copyButton.Size = UDim2.new(0, 70, 0, 25)
copyButton.Position = UDim2.new(1, -80, 0.5, -12)
copyButton.BackgroundColor3 = Color3.fromRGB(72, 133, 237)
copyButton.TextColor3 = Color3.new(1,1,1)
copyButton.Font = Enum.Font.GothamSemibold
copyButton.TextSize = 14
copyButton.Text = "Copy"
copyButton.AutoButtonColor = true
local copiedLabel = Instance.new("TextLabel", discordFrame)
copiedLabel.Size = UDim2.new(1, 0, 1, 0)
copiedLabel.Position = UDim2.new(0, 0, 0, 0)
copiedLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
copiedLabel.BackgroundTransparency = 0.7
copiedLabel.TextColor3 = Color3.fromRGB(0, 255, 0)
copiedLabel.Text = "Copied!"
copiedLabel.Font = Enum.Font.GothamBold
copiedLabel.TextSize = 18
copiedLabel.Visible = false
copiedLabel.TextWrapped = true
copyButton.MouseButton1Click:Connect(function()
if setclipboard then
setclipboard("https://discord.gg/RHMdAUhuyT")
copiedLabel.Visible = true
wait(1.5)
copiedLabel.Visible = false
else
copiedLabel.Text = "Copy not supported!\nCopy manually:\nhttps://discord.gg/RHMdAUhuyT"
copiedLabel.Visible = true
wait(3)
copiedLabel.Visible = false
copiedLabel.Text = "Copied!"
end
end)
-- Här kan du lägga till din no-clip GUI + funktioner (noclip toggling, speed slider, fly, etc.) med "Marketing Swish" längst upp också!