Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Farewell Infortality.
- -- Version: 2.82
- -- fungsi:
- dak = false
- -- Instances:
- local Ent3g = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local judul = Instance.new("TextLabel")
- local op = Instance.new("TextButton")
- local rb = Instance.new("TextButton")
- local cred = Instance.new("TextLabel")
- --Properties:
- Ent3g.Name = "Ent3g"
- Ent3g.Parent = game.CoreGui
- Frame.Parent = Ent3g
- Frame.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
- Frame.BorderColor3 = Color3.new(0.498039, 0.54902, 0.552941)
- Frame.BorderSizePixel = 3
- Frame.Active = true
- Frame.Draggable = true
- Frame.Position = UDim2.new(0.321637452, 0, 0.21150592, 0)
- Frame.Size = UDim2.new(0, 305, 0, 241)
- judul.Name = "judul"
- judul.Parent = Frame
- judul.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
- judul.BorderColor3 = Color3.new(0.498039, 0.54902, 0.552941)
- judul.BorderSizePixel = 4
- judul.Size = UDim2.new(0, 305, 0, 49)
- judul.Font = Enum.Font.Cartoon
- judul.Text = "Jellyfish Simulator"
- judul.TextColor3 = Color3.new(0, 0, 0)
- judul.TextSize = 31
- op.Name = "op"
- op.Parent = Frame
- op.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
- op.BorderColor3 = Color3.new(0.498039, 0.54902, 0.552941)
- op.BorderSizePixel = 4
- op.Position = UDim2.new(0.268852472, 0, 0.275302172, 0)
- op.Size = UDim2.new(0, 139, 0, 43)
- op.Font = Enum.Font.Cartoon
- op.Text = "Farm Money"
- op.TextColor3 = Color3.new(0, 0, 0)
- op.TextSize = 21
- op.MouseButton1Down:connect(function()
- if dak == true then
- dak = false
- op.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
- else
- dak = true
- op.BackgroundColor3 = Color3.new(40, 127, 71)
- while dak do
- wait()
- game.ReplicatedStorage.GlobalEvents.Chest:FireServer("TheFuture")
- end
- end
- end)
- rb.Name = "rb"
- rb.Parent = Frame
- rb.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
- rb.BorderColor3 = Color3.new(0.498039, 0.54902, 0.552941)
- rb.BorderSizePixel = 4
- rb.Position = UDim2.new(0.268852472, 0, 0.556539774, 0)
- rb.Size = UDim2.new(0, 139, 0, 43)
- rb.Font = Enum.Font.Cartoon
- rb.Text = "Rainbow: off"
- rb.TextColor3 = Color3.new(0, 0, 0)
- rb.TextSize = 21
- cred.Name = "cred"
- cred.Parent = Frame
- cred.BackgroundColor3 = Color3.new(1, 1, 1)
- cred.BackgroundTransparency = 1
- cred.Position = UDim2.new(0, 0, 0.829875529, 0)
- cred.Size = UDim2.new(0, 305, 0, 41)
- cred.Font = Enum.Font.Cartoon
- cred.Text = "Created By ItzHxS // ItzHxS#1280"
- cred.TextColor3 = Color3.new(0.180392, 0.8, 0.443137)
- cred.TextSize = 21
- -- Scripts:
- -- Rainbow:
- local RainbowEnabled = false
- local rs = game:GetService("RunService")
- local RRAAIINNBBOOWWSS = {}
- local function rainbowify(obj, prop)
- if type(obj) == "table" then
- for i, v in pairs(obj) do
- rainbowify(v, prop)
- end
- elseif type(prop) == "table" then
- for i, v in pairs(prop) do
- rainbowify(obj, v)
- end
- else
- local ok, o = pcall(function()
- return obj[prop]
- end)
- if ok then
- table.insert(RRAAIINNBBOOWWSS, function(c)
- if c then
- obj[prop] = c
- else
- obj[prop] = o
- end
- end)
- end
- end
- end
- do
- local reset = true
- rs.RenderStepped:connect(function()
- if RainbowEnabled then
- local c = Color3.fromHSV((tick() / 16) % 1, 1, 1)
- for i = 1, #RRAAIINNBBOOWWSS do
- pcall(RRAAIINNBBOOWWSS[i], c)
- end
- reset = true
- elseif reset then
- for i = 1, #RRAAIINNBBOOWWSS do
- pcall(RRAAIINNBBOOWWSS[i], false)
- end
- reset = false
- end
- end)
- end
- rainbowify({Ent3g, Frame, judul, op, rb, cred}
- , {"BackgroundColor3",})
- rb.MouseButton1Down:connect(function()
- RainbowEnabled = not RainbowEnabled
- if RainbowEnabled then
- rb.Text = "Rainbow: On"
- else
- rb.Text = "Rainbow: Off"
- end
- end)
Add Comment
Please, Sign In to add comment