Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
- local function updateCharacter(newCharacter) character = newCharacter humanoidRootPart = character:WaitForChild("HumanoidRootPart") end
- player.CharacterAdded:Connect(updateCharacter)
- local screenGui = Instance.new("ScreenGui") screenGui.ResetOnSpawn = false screenGui.Parent = player:WaitForChild("PlayerGui")
- local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 250, 0, 200) frame.Position = UDim2.new(0.3, 0, 0.3, 0) frame.BackgroundColor3 = Color3.new(0, 0, 0) frame.Active = true frame.Draggable = true frame.Parent = screenGui
- local uiCorner = Instance.new("UICorner") uiCorner.CornerRadius = UDim.new(0, 15) uiCorner.Parent = frame
- local textLabel = Instance.new("TextLabel") textLabel.Size = UDim2.new(0, 200, 0, 30) textLabel.Position = UDim2.new(0.5, -100, 1, 10) textLabel.BackgroundTransparency = 1 textLabel.Text = "By Vanihgol333" textLabel.TextColor3 = Color3.new(1, 1, 1) textLabel.TextSize = 18 textLabel.Font = Enum.Font.SourceSansBold textLabel.Parent = frame
- local function animateText() while true do for i = 0, 1, 0.05 do textLabel.TextTransparency = 1 - i task.wait(0.05) end task.wait(1) for i = 1, 0, -0.05 do textLabel.TextTransparency = 1 - i task.wait(0.05) end task.wait(1) end end
- task.spawn(animateText)
- local function createButton(text, position, callback) local button = Instance.new("TextButton") button.Size = UDim2.new(0, 100, 0, 30) button.Position = position button.BackgroundColor3 = Color3.fromRGB(0, 255, 0) button.Text = text button.Parent = frame button.MouseButton1Click:Connect(callback)
- local btnCorner = Instance.new("UICorner")
- btnCorner.CornerRadius = UDim.new(0, 10)
- btnCorner.Parent = button
- return button
- end
- local function teleportKakgem() if humanoidRootPart then local kakgem = game:GetService("Workspace"):FindFirstChild("BrookHavenMap") if kakgem then kakgem = kakgem:FindFirstChild("DivinBoard_Prank") if kakgem then kakgem = kakgem:FindFirstChild("Kakgem") if kakgem and kakgem:IsA("Part") then local originalPosition = kakgem.Position kakgem.Position = humanoidRootPart.Position + Vector3.new(0, 2, 0) task.wait(2) kakgem.Position = originalPosition end end end end end
- local immortalityActive = false local immortalityButton local shelterZone
- local function findShelterZone() local stages = game:GetService("Workspace"):FindFirstChild("Stages") if stages then local stageParts = stages:FindFirstChild("StageParts") if stageParts then local shelter = stageParts:FindFirstChild("Shelter") if shelter then return shelter:FindFirstChild("ShelterZone") end end end return nil end
- local function toggleImmortality() immortalityActive = not immortalityActive
- if immortalityActive then
- immortalityButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- task.spawn(function()
- local originalPosition
- while immortalityActive do
- shelterZone = findShelterZone()
- if shelterZone and humanoidRootPart then
- if not originalPosition then
- originalPosition = shelterZone.Position
- end
- shelterZone.Position = humanoidRootPart.Position + Vector3.new(0, 5, 0)
- end
- task.wait(0.1)
- end
- if shelterZone and originalPosition then
- shelterZone.Position = originalPosition
- end
- end)
- else
- immortalityButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- end
- end
- local catModeActive = false local catButton
- local function findCatPart() return game:GetService("Workspace"):FindFirstChild("CatPart") end
- local function toggleCatMode() catModeActive = not catModeActive
- if catModeActive then
- catButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- task.spawn(function()
- while catModeActive do
- local catPart = findCatPart()
- if catPart and catPart:IsA("Part") and humanoidRootPart then
- local forwardOffset = humanoidRootPart.CFrame.LookVector * 2
- local verticalOffset = Vector3.new(0, 1, 0)
- catPart.Position = humanoidRootPart.Position + forwardOffset + verticalOffset
- end
- task.wait(0.1)
- end
- end)
- else
- catButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- end
- end
- local function teleportToVictory() if humanoidRootPart then humanoidRootPart.CFrame = CFrame.new(46.6008186340332, 343.2994384765625, 209.26109313964844) end end
- createButton("Scream", UDim2.new(0, 10, 0, 10), teleportKakgem) immortalityButton = createButton("Immortality", UDim2.new(0, 10, 0, 50), toggleImmortality) catButton = createButton("Oii Aii Mode", UDim2.new(0, 10, 0, 90), toggleCatMode) createButton("Victory", UDim2.new(0, 10, 0, 130), teleportToVictory)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement