The Ctrl + V Game

  • Thread starter Thread starter smileyhead
  • Start date Start date
  • Views Views 573,826
  • Replies Replies 9,272
  • Likes Likes 15
1670198844172.png
 
  • Haha
Reactions: SylverReZ
Code:
C:\Users\Vin\Desktop\DxRMT>C:\Users\Vin\Desktop\DxRMT\DxRMT-IMGUI.exe
Unhandled exception. System.NullReferenceException: Object reference not set to an instance of an object.
   at ImGuiNET.ConfigFile.CheckKeyComboPressed(ImGuiIOPtr imguiIO, String name, ImGuiKey[] defaultCombo)
   at ImGuiNET.ControlWindow.CheckKeyShortcuts()
   at ImGuiNET.ControlWindow.Draw(Params p)
   at ImGuiNET.DxRMTApp.ShowUpdate()
   at ImGuiNET.Program.Main(String[] args)
 
Well, I've been haunted in my sleep
You've been starrin' in my dreams
Lord, I miss you, child
I've been waitin' in the hall
Been waitin' on your call
Your phone rings
It's just some friends of mine that say
"Hey, what's the matter, man?
We're gonna come around at twelve
With some Puerto Rican girls that's just dyin' to meet you
We're gonna bring a case of wine
Hey, let's go mess and fool around
You know, like we used to"
 
local Part = Instance.new("Part")
Part.Parent = workspace
Part.Size = Vector3.new(1,1,1)
Part.Anchored = true

while true do
local newPart = Part:Clone()
newPart.Parent = workspace
newPart.Position = Part.Position + Vector3.new(1,math.random(-1,1),math.random(-1,1))
newPart.CFrame = CFrame.new(Part.Position) * CFrame.new(1,math.random(-1,1),math.random(-1,1))
newPart.BrickColor = BrickColor.random()
newPart.Transparency = 1

newPart.Touched:Connect(function(hit)
if hit.Parent:FindFirstChild("Humanoid") then
wait(1.5)
for i = 1, 10 do
wait()
newPart.Transparency = newPart.Transparency + 0.1
end
newPart:Destroy()
end
end)

for i = 1, 2 do
wait()
newPart.Transparency = newPart.Transparency - 0.5
end

Part = newPart
wait(0.01)
end
 

Site & Scene News

Popular threads in this forum