Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Farewell infortality
- -- Revamp by ImFrostic, Version 2.8
- -- Objects
- local Cash = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextButton = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- -- Properties
- Cash.Name = "Cash"
- Cash.Parent = game.CoreGui
- Frame.Parent = Cash
- Frame.BackgroundColor3 = Color3.new(1, 1, 1)
- Frame.Position = UDim2.new(0, 0,0.415, 0)
- Frame.Size = UDim2.new(0, 220, 0, 70)
- Frame.BackgroundTransparency = 1
- TextButton.Parent = Frame
- TextButton.BackgroundColor3 = Color3.new(0.92549, 0.0941177, 1)
- TextButton.Position = UDim2.new(0, 0, 0.514285743, 0)
- TextButton.Size = UDim2.new(0, 220, 0, 34)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.Text = "Goto Cash"
- TextButton.TextColor3 = Color3.new(1, 1, 1)
- TextButton.TextSize = 18
- TextButton.MouseButton1Click:connect(function()
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.DroppedCash.Cash.Part.CFrame
- end)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
- TextLabel.Size = UDim2.new(0, 220, 0, 36)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "No Cash is dropped..."
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.TextSize = 17
- -- Scripts
- function Tp(...)
- plr = game:GetService("Players").LocalPlayer
- local char = plr.Character
- local root = char.HumanoidRootPart
- local args = {...}
- for i=0,1,0.06 do
- wait()
- root.CFrame = root.CFrame:lerp(CFrame.new(unpack(args,1,3)), i)
- end
- end
- while wait() do
- if workspace.DroppedCash:FindFirstChild('Cash') then
- Frame:TweenPosition(UDim2.new(0, 0,0.415, 0),"In","Quad")
- TextLabel.Text = workspace.DroppedCash.Cash.PlayerName.Value .. " Just dropped $".. workspace.DroppedCash.Cash.Amount.Value
- else
- Frame:TweenPosition(UDim2.new(0, 0,0.-715, 0),"In","Quad")
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment