Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Location = 0 --1 = beast 0 = station
- if Location == 0 then
- hrp = game.Workspace.PowerStation.StationFolder.StationGUIPart
- elseif Location == 1 then
- hrp = game.Workspace.Rake.HumanoidRootPart
- end
- local Locate = hrp:FindFirstChild("ESP")
- if Locate == nil then
- local board = Instance.new("BillboardGui",hrp)
- board.Name = "ESP"
- board.Size = UDim2.new(1,0,1,0)
- board.StudsOffset = Vector3.new(3,1,0)
- board.AlwaysOnTop = true
- local bar = Instance.new("Frame",board) --//Creates the red background
- bar.BorderSizePixel = 0
- bar.Size = UDim2.new(25,0,25,0)
- bar.Name = "Frame"
- if Location == 1 then
- bar.BackgroundColor3 = Color3.new(255,0,0) --Beast
- bar.Transparency = .5 --Beast
- elseif Location == 0 then
- bar.Transparency = .9 --Power
- bar.BackgroundColor3 = Color3.new(0,0,255) --Power
- end
- else
- hrp.ESP:Destroy()
- end
Add Comment
Please, Sign In to add comment