Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How Do I Make A Pinewood Computer Core Like Meltdown Script?

Asked by 9 years ago

I dont want to make a SUPER BIG SCRIPT thats a PBCC meltdown like script also im a noob at scripting its super hard to me so can you help me im trying to make a good meltdown script here is it

game.Workspace.NoobOverheatSound:Play()
local msg = Instance.new('Message', Workspace)
msg.Text =(((CORE OVERHEAT)))"
wait(5)
msg:Destroy()
game.Workspace.bigboom:Play()
end)
for i, player in ipairs(game.Players:GetPlayers()) do
    if player.Character then
        local hum = player.Character:FindFirstChild('Humanoid')
        if hum then
            hum.Health = 0
        end
    end
end
0
Not a request site, check out these links to learn scripting, please only post any problems or issues we can fix in YOUR script! http://wiki.roblox.com/index.php?title=Scripting, http://www.lua.org/manual/5.1/ // also // you dont have to do the unnecessary chapters of the lua reference manual! dragonkeeper467 453 — 9y
0
i like your stuff :D zerotwonotafan 0 — 4y

1 answer

Log in to vote
0
Answered by 5 years ago

Here is a script for a temperature events. You can change the the events of this script. The events what are there are just for examples


while true do temp = game.Workspace.Temp.Value if temp > 3999 then script.Parent.TextColor3=Color3.new(1,0,0) script.Parent.Text="MELTDOWN!" elseif temp > 3500 then script.Parent.TextColor3=Color3.new(1,170/255,0) script.Parent.Text="Critical" elseif temp > 3000 then script.Parent.TextColor3=Color3.new(1,1,0) script.Parent.Text="Overheating" elseif temp > 500 then script.Parent.TextColor3=Color3.new(0,1,0) script.Parent.Text="Safe" elseif temp > 0 then script.Parent.Text="Cold" script.Parent.TextColor3=Color3.new(0,170/255,1) else script.Parent.Text="FREEZEDOWN!" script.Parent.TextColor3=Color3.new(0,0,1) end wait() end

0
This question's over 3 years old. :| TheeDeathCaster 2368 — 5y
Ad

Answer this question