Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Farewell infortality
- -- Revamp by ImFrostic, Version 2.8
- -- Objects
- local Bank = Instance.new("ScreenGui")
- local TextLabel = Instance.new("TextLabel")
- local TextLabel_2 = Instance.new("TextLabel")
- local TextLabel_3 = Instance.new("TextLabel")
- local Red = Instance.new("TextLabel")
- local Green = Instance.new("TextLabel")
- -- Properties
- Bank.Name = "Bank"
- Bank.Parent = game.CoreGui
- TextLabel.Parent = Bank
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.BackgroundTransparency = 1
- TextLabel.Position = UDim2.new(0, 0, 0.0250783693, 0)
- TextLabel.Size = UDim2.new(0, 215, 0, 33)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "Bank: Closed"
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.TextSize = 17
- TextLabel_2.Parent = Bank
- TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel_2.BackgroundTransparency = 1
- TextLabel_2.Position = UDim2.new(0, 0, 0.076802507, 0)
- TextLabel_2.Size = UDim2.new(0, 215, 0, 33)
- TextLabel_2.Font = Enum.Font.SourceSans
- TextLabel_2.Text = "Jew: Closed"
- TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
- TextLabel_2.TextSize = 17
- TextLabel_3.Parent = Bank
- TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel_3.BackgroundTransparency = 1
- TextLabel_3.Position = UDim2.new(0, 0, 0.128526643, 0)
- TextLabel_3.Size = UDim2.new(0, 215, 0, 33)
- TextLabel_3.Font = Enum.Font.SourceSans
- TextLabel_3.Text = "Train: Closed"
- TextLabel_3.TextColor3 = Color3.new(1, 1, 1)
- TextLabel_3.TextSize = 17
- Red.Name = "Red"
- Red.Parent = TextLabel
- Red.BackgroundColor3 = Color3.new(1, 0, 0)
- Red.Size = UDim2.new(0, 100, 0, 100)
- Red.Visible = false
- Green.Name = "Green"
- Green.Parent = TextLabel
- Green.BackgroundColor3 = Color3.new(0, 1, 0)
- Green.Size = UDim2.new(0, 100, 0, 100)
- Green.Visible = false
- -- Scripts
- while wait() do
- game:GetService("Workspace").Banks:GetChildren()[1].Name="Bank"
- game:GetService("Workspace").Jewelrys:GetChildren()[1].Name="Jewelry"
- if workspace.Jewelrys.Jewelry.Extra:WaitForChild("Light").SurfaceLight.Enabled == true then
- TextLabel_2.Text = "Jewerly: Open"
- TextLabel_2.TextColor3 = Green.BackgroundColor3
- else
- TextLabel_2.Text = "Jewerly: Closed"
- TextLabel_2.TextColor3 = Red.BackgroundColor3
- end
- if workspace.Banks.Bank.Extra:WaitForChild("Light").SurfaceLight.Enabled == true then
- TextLabel.Text = "Bank: Open"
- TextLabel.TextColor3 = Green.BackgroundColor3
- else
- TextLabel.Text = "Bank: Closed"
- TextLabel.TextColor3 = Red.BackgroundColor3
- end
- if workspace.Trains:FindFirstChild("BoxCar") then
- TextLabel_3.TextColor3 = Green.BackgroundColor3
- TextLabel_3.Text = "Train: Driving"
- else
- TextLabel_3.Text = "Train: Not Driving"
- TextLabel_3.TextColor3 = Red.BackgroundColor3
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment