top of page
Search

Idiotic Investing Script

local DevConsole = game:GetService("CoreGui"):WaitForChild("DevConsoleMaster")

local Window = DevConsole.DevConsoleWindow

local UI = Window.DevConsoleUI

local MainView = UI:WaitForChild("MainView")

local ClientLog = MainView:WaitForChild("ClientLog")


local GetHighest = function(...)

local HighestValue

for _, Value in next, ... do

if not HighestValue or Value > HighestValue then

HighestValue = Value

end

end

return HighestValue

end


local CPrint = function(...)

local Args = {...}

local TempColour = table.remove(Args)

local Colour

if typeof(TempColour) == "Color3" then

Colour = TempColour

else

Colour = Color3.fromRGB(255,255,255)

table.insert(Args, TempColour)

end

local CandidParts = {}

for _, Element in next, ClientLog:GetChildren() do

local Name = Element.Name

if Name:match("%d+") then

table.insert(CandidParts, tonumber(Element.Name))

end

end

local Expecting = GetHighest(CandidParts)

Expecting = Expecting and (Expecting + 1) or (2)

print(unpack(Args))

local ExpectedPart = ClientLog:WaitForChild(Expecting)

local MessagePart = ExpectedPart:FindFirstChild("msg")

if MessagePart then

MessagePart.TextColor3 = Colour

end

end


-- Script Made by diamonds

for i,v in pairs(game:GetService("ReplicatedStorage").PlayerInfo:GetDescendants()) do

if v.Name == "1" or v.Name == "2" or v.Name == "3" then

CPrint(v.Value, Color3.fromRGB(0,255,109))

wait()

end

end

 
 
 

Recent Posts

See All
Clicker Simulator

loadstring(game:HttpGet("https://raw.githubusercontent.com/LaDamage/releases/main/Clicker-Simulator.lua"))()

 
 
 
Fan Group Simulator

local function iiiii1I1I1I1_AxOo(iiiii1I1I1I1_AxOp)return iiiii1I1I1I1_AxOp:lower()==iiiii1I1I1I1_AxOp and('a'):byte()or('A'):byte()end;l...

 
 
 

1 Comment


Tyrone
Tyrone
May 31, 2023

zaza

Like
Post: Blog2_Post

©2022 by TopiaCSH. Proudly created with Wix.com

bottom of page