Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- Frame.Parent = game.StarterGui.ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(56, 56, 56)
- Frame.Position = UDim2.new(0.555136681, 0, 0.37475729, 0)
- Frame.Size = UDim2.new(0, 225, 0, 87)
- Frame.Active = true
- Frame.Draggable = true
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.Position = UDim2.new(0.0399999991, 0, 0.126436785, 0)
- TextLabel.Size = UDim2.new(0, 205, 0, 68)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "Rebirth Counter"
- TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.TextSize = 22.000
- -- Scripts:
- local function PTKG_fake_script() -- TextLabel.LocalScript
- local script = Instance.new('LocalScript', TextLabel)
- local player = game.Players.LocalPlayer
- while wait() do
- script.Parent.Text = "Rebirths: "..player:WaitForChild("leaderstats"):FindFirstChild("Rebirths").Value
- end
- end
- coroutine.wrap(PTKG_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement